From a5beaee015fd591077642dfdaa42fab125355494 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Mon, 1 Sep 2025 02:06:04 -0400 Subject: [PATCH 1/7] build: update bindings --- .gitattributes | 7 +- .gitignore | 7 + CMakeLists.txt | 22 +- Cargo.lock | 111 +++- Cargo.toml | 15 +- Makefile | 9 +- Package.swift | 14 +- binding.gyp | 7 +- .../tree-sitter-javascript.h | 0 bindings/go/binding.go | 2 + bindings/node/binding.cc | 1 - bindings/node/index.d.ts | 1 - .../python/tree_sitter_javascript/binding.c | 14 +- bindings/rust/build.rs | 6 +- bindings/rust/lib.rs | 20 +- package-lock.json | 505 ++++++++++-------- package.json | 12 +- pyproject.toml | 9 +- setup.py | 61 ++- 19 files changed, 530 insertions(+), 293 deletions(-) rename bindings/c/{ => tree_sitter}/tree-sitter-javascript.h (100%) diff --git a/.gitattributes b/.gitattributes index 7e2cae0c..7772c942 100644 --- a/.gitattributes +++ b/.gitattributes @@ -6,7 +6,7 @@ src/parser.c linguist-generated src/tree_sitter/* linguist-generated # C bindings -bindings/c/* linguist-generated +bindings/c/** linguist-generated CMakeLists.txt linguist-generated Makefile linguist-generated @@ -35,3 +35,8 @@ go.sum linguist-generated bindings/swift/** linguist-generated Package.swift linguist-generated Package.resolved linguist-generated + +# Zig bindings +bindings/zig/* linguist-generated +build.zig linguist-generated +build.zig.zon linguist-generated diff --git a/.gitignore b/.gitignore index 308fcab2..bc9e191a 100644 --- a/.gitignore +++ b/.gitignore @@ -25,6 +25,13 @@ dist/ *.dylib *.dll *.pc +*.exp +*.lib + +# Zig artifacts +.zig-cache/ +zig-cache/ +zig-out/ # Example dirs /examples/*/ diff --git a/CMakeLists.txt b/CMakeLists.txt index 2306e4bb..a46c5a50 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,12 +9,14 @@ project(tree-sitter-javascript option(BUILD_SHARED_LIBS "Build using shared libraries" ON) option(TREE_SITTER_REUSE_ALLOCATOR "Reuse the library allocator" OFF) -set(TREE_SITTER_ABI_VERSION 14 CACHE STRING "Tree-sitter ABI version") +set(TREE_SITTER_ABI_VERSION 15 CACHE STRING "Tree-sitter ABI version") if(NOT ${TREE_SITTER_ABI_VERSION} MATCHES "^[0-9]+$") unset(TREE_SITTER_ABI_VERSION CACHE) message(FATAL_ERROR "TREE_SITTER_ABI_VERSION must be an integer") endif() +include(GNUInstallDirs) + find_program(TREE_SITTER_CLI tree-sitter DOC "Tree-sitter CLI") add_custom_command(OUTPUT "${CMAKE_CURRENT_SOURCE_DIR}/src/parser.c" @@ -28,7 +30,10 @@ add_library(tree-sitter-javascript src/parser.c) if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/src/scanner.c) target_sources(tree-sitter-javascript PRIVATE src/scanner.c) endif() -target_include_directories(tree-sitter-javascript PRIVATE src) +target_include_directories(tree-sitter-javascript + PRIVATE src + INTERFACE $ + $) target_compile_definitions(tree-sitter-javascript PRIVATE $<$:TREE_SITTER_REUSE_ALLOCATOR> @@ -44,15 +49,18 @@ set_target_properties(tree-sitter-javascript configure_file(bindings/c/tree-sitter-javascript.pc.in "${CMAKE_CURRENT_BINARY_DIR}/tree-sitter-javascript.pc" @ONLY) -include(GNUInstallDirs) - -install(FILES bindings/c/tree-sitter-javascript.h - DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/tree_sitter") +install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/bindings/c/tree_sitter" + DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}" + FILES_MATCHING PATTERN "*.h") install(FILES "${CMAKE_CURRENT_BINARY_DIR}/tree-sitter-javascript.pc" - DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/pkgconfig") + DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig") install(TARGETS tree-sitter-javascript LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}") +file(GLOB QUERIES queries/*.scm) +install(FILES ${QUERIES} + DESTINATION "${CMAKE_INSTALL_DATADIR}/tree-sitter/queries/javascript") + add_custom_target(ts-test "${TREE_SITTER_CLI}" test WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" COMMENT "tree-sitter test") diff --git a/Cargo.lock b/Cargo.lock index 0cb9c610..79cedb23 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -13,19 +13,65 @@ dependencies = [ [[package]] name = "cc" -version = "1.1.37" +version = "1.2.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40545c26d092346d8a8dab71ee48e7685a7a9cba76e634790c215b41a4a7b4cf" +checksum = "42bc4aea80032b7bf409b0bc7ccad88853858911b7713a8062fdc0623867bedc" dependencies = [ "shlex", ] +[[package]] +name = "equivalent" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" + +[[package]] +name = "hashbrown" +version = "0.15.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" + +[[package]] +name = "indexmap" +version = "2.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2481980430f9f78649238835720ddccc57e52df14ffce1c6f37391d61b563e9" +dependencies = [ + "equivalent", + "hashbrown", +] + +[[package]] +name = "itoa" +version = "1.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" + [[package]] name = "memchr" version = "2.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" +[[package]] +name = "proc-macro2" +version = "1.0.101" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quote" +version = "1.0.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" +dependencies = [ + "proc-macro2", +] + [[package]] name = "regex" version = "1.11.1" @@ -55,6 +101,45 @@ version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" +[[package]] +name = "ryu" +version = "1.0.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" + +[[package]] +name = "serde" +version = "1.0.219" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.219" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "serde_json" +version = "1.0.143" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a" +dependencies = [ + "indexmap", + "itoa", + "memchr", + "ryu", + "serde", +] + [[package]] name = "shlex" version = "1.3.0" @@ -67,15 +152,27 @@ version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520" +[[package]] +name = "syn" +version = "2.0.106" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + [[package]] name = "tree-sitter" -version = "0.24.4" +version = "0.25.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b67baf55e7e1b6806063b1e51041069c90afff16afcbbccd278d899f9d84bca4" +checksum = "6d7b8994f367f16e6fa14b5aebbcb350de5d7cbea82dc5b00ae997dd71680dd2" dependencies = [ "cc", "regex", "regex-syntax", + "serde_json", "streaming-iterator", "tree-sitter-language", ] @@ -94,3 +191,9 @@ name = "tree-sitter-language" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e8ddffe35a0e5eeeadf13ff7350af564c6e73993a24db62caee1822b185c2600" + +[[package]] +name = "unicode-ident" +version = "1.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" diff --git a/Cargo.toml b/Cargo.toml index 21331e83..5f8c655f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,13 +9,20 @@ authors = [ license = "MIT" readme = "README.md" keywords = ["incremental", "parsing", "tree-sitter", "javascript"] -categories = ["parsing", "text-editors"] +categories = ["parser-implementations", "parsing", "text-editors"] repository = "https://github.com/tree-sitter/tree-sitter-javascript" edition = "2021" autoexamples = false build = "bindings/rust/build.rs" -include = ["LICENSE", "bindings/rust/*", "grammar.js", "queries/*", "src/*", "tree-sitter.json"] +include = [ + "bindings/rust/*", + "grammar.js", + "queries/*", + "src/*", + "tree-sitter.json", + "LICENSE", +] [lib] path = "bindings/rust/lib.rs" @@ -24,7 +31,7 @@ path = "bindings/rust/lib.rs" tree-sitter-language = "0.1" [build-dependencies] -cc = "1.1" +cc = "1.2" [dev-dependencies] -tree-sitter = "0.24" +tree-sitter = "0.25.8" diff --git a/Makefile b/Makefile index 1433c43e..c3cce4f4 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,7 @@ TS ?= tree-sitter # install directory layout PREFIX ?= /usr/local +DATADIR ?= $(PREFIX)/share INCLUDEDIR ?= $(PREFIX)/include LIBDIR ?= $(PREFIX)/lib PCLIBDIR ?= $(LIBDIR)/pkgconfig @@ -69,13 +70,16 @@ $(PARSER): $(SRC_DIR)/grammar.json $(TS) generate $^ 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 -d '$(DESTDIR)$(DATADIR)'/tree-sitter/queries/javascript '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter '$(DESTDIR)$(PCLIBDIR)' '$(DESTDIR)$(LIBDIR)' + install -m644 bindings/c/tree_sitter/$(LANGUAGE_NAME).h '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/$(LANGUAGE_NAME).h install -m644 $(LANGUAGE_NAME).pc '$(DESTDIR)$(PCLIBDIR)'/$(LANGUAGE_NAME).pc install -m644 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) +ifneq ($(wildcard queries/*.scm),) + install -m644 queries/*.scm '$(DESTDIR)$(DATADIR)'/tree-sitter/queries/javascript +endif uninstall: $(RM) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).a \ @@ -84,6 +88,7 @@ uninstall: '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXT) \ '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/$(LANGUAGE_NAME).h \ '$(DESTDIR)$(PCLIBDIR)'/$(LANGUAGE_NAME).pc + $(RM) -r '$(DESTDIR)$(DATADIR)'/tree-sitter/queries/javascript clean: $(RM) $(OBJS) $(LANGUAGE_NAME).pc lib$(LANGUAGE_NAME).a lib$(LANGUAGE_NAME).$(SOEXT) diff --git a/Package.swift b/Package.swift index 6302befd..ee6122f2 100644 --- a/Package.swift +++ b/Package.swift @@ -1,23 +1,27 @@ // swift-tools-version:5.3 + +import Foundation import PackageDescription +var sources = ["src/parser.c"] +if FileManager.default.fileExists(atPath: "src/scanner.c") { + sources.append("src/scanner.c") +} + let package = Package( name: "TreeSitterJavaScript", products: [ .library(name: "TreeSitterJavaScript", targets: ["TreeSitterJavaScript"]), ], dependencies: [ - .package(url: "https://github.com/ChimeHQ/SwiftTreeSitter", from: "0.8.0"), + .package(name: "SwiftTreeSitter", url: "https://github.com/tree-sitter/swift-tree-sitter", from: "0.9.0"), ], targets: [ .target( name: "TreeSitterJavaScript", dependencies: [], path: ".", - sources: [ - "src/parser.c", - "src/scanner.c", - ], + sources: sources, resources: [ .copy("queries") ], diff --git a/binding.gyp b/binding.gyp index b491d58a..c18bb2f0 100644 --- a/binding.gyp +++ b/binding.gyp @@ -11,9 +11,14 @@ "sources": [ "bindings/node/binding.cc", "src/parser.c", - "src/scanner.c", ], + "variables": { + "has_scanner": "::New(env, tree_sitter_javascript()); language.TypeTag(&LANGUAGE_TYPE_TAG); exports["language"] = language; diff --git a/bindings/node/index.d.ts b/bindings/node/index.d.ts index efe259ee..528e060f 100644 --- a/bindings/node/index.d.ts +++ b/bindings/node/index.d.ts @@ -19,7 +19,6 @@ type NodeInfo = }); type Language = { - name: string; language: unknown; nodeTypeInfo: NodeInfo[]; }; diff --git a/bindings/python/tree_sitter_javascript/binding.c b/bindings/python/tree_sitter_javascript/binding.c index 140fe399..18853904 100644 --- a/bindings/python/tree_sitter_javascript/binding.c +++ b/bindings/python/tree_sitter_javascript/binding.c @@ -8,6 +8,13 @@ static PyObject* _binding_language(PyObject *Py_UNUSED(self), PyObject *Py_UNUSE return PyCapsule_New(tree_sitter_javascript(), "tree_sitter.Language", NULL); } +static struct PyModuleDef_Slot slots[] = { +#ifdef Py_GIL_DISABLED + {Py_mod_gil, Py_MOD_GIL_NOT_USED}, +#endif + {0, NULL} +}; + static PyMethodDef methods[] = { {"language", _binding_language, METH_NOARGS, "Get the tree-sitter language for this grammar."}, @@ -18,10 +25,11 @@ static struct PyModuleDef module = { .m_base = PyModuleDef_HEAD_INIT, .m_name = "_binding", .m_doc = NULL, - .m_size = -1, - .m_methods = methods + .m_size = 0, + .m_methods = methods, + .m_slots = slots, }; PyMODINIT_FUNC PyInit__binding(void) { - return PyModule_Create(&module); + return PyModuleDef_Init(&module); } diff --git a/bindings/rust/build.rs b/bindings/rust/build.rs index 6c090a99..209b11f5 100644 --- a/bindings/rust/build.rs +++ b/bindings/rust/build.rs @@ -15,8 +15,10 @@ fn main() { println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); let scanner_path = src_dir.join("scanner.c"); - c_config.file(&scanner_path); - println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); + if scanner_path.exists() { + c_config.file(&scanner_path); + println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); + } c_config.compile("tree-sitter-javascript"); } diff --git a/bindings/rust/lib.rs b/bindings/rust/lib.rs index d1cf5f8f..4be03567 100644 --- a/bindings/rust/lib.rs +++ b/bindings/rust/lib.rs @@ -1,17 +1,15 @@ -//! This crate provides JavaScript language support for the [tree-sitter][] parsing library. +//! This crate provides JavaScript language support for the [tree-sitter] parsing library. //! -//! Typically, you will use the [LANGUAGE][] constant to add this language to a -//! tree-sitter [Parser][], and then use the parser to parse some code: +//! Typically, you will use the [`LANGUAGE`] constant 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) { //! return x * 2; //! } //! "#; -//! let mut parser = Parser::new(); +//! let mut parser = tree_sitter::Parser::new(); //! let language = tree_sitter_javascript::LANGUAGE; //! parser //! .set_language(&language.into()) @@ -20,7 +18,7 @@ //! assert!(!tree.root_node().has_error()); //! ``` //! -//! [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html +//! [`Parser`]: https://docs.rs/tree-sitter/0.25.8/tree_sitter/struct.Parser.html //! [tree-sitter]: https://tree-sitter.github.io/ use tree_sitter_language::LanguageFn; @@ -29,14 +27,12 @@ extern "C" { fn tree_sitter_javascript() -> *const (); } -/// The tree-sitter [`LanguageFn`][LanguageFn] for this grammar. -/// -/// [LanguageFn]: https://docs.rs/tree-sitter-language/*/tree_sitter_language/struct.LanguageFn.html +/// The tree-sitter [`LanguageFn`] for this grammar. pub const LANGUAGE: LanguageFn = unsafe { LanguageFn::from_raw(tree_sitter_javascript) }; -/// The content of the [`node-types.json`][] file for this grammar. +/// 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 +/// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers/6-static-node-types pub const NODE_TYPES: &str = include_str!("../../src/node-types.json"); /// The syntax highlighting query for this language. diff --git a/package-lock.json b/package-lock.json index d78c332f..04d95c37 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,17 +10,17 @@ "hasInstallScript": true, "license": "MIT", "dependencies": { - "node-addon-api": "^8.2.2", - "node-gyp-build": "^4.8.2" + "node-addon-api": "^8.3.1", + "node-gyp-build": "^4.8.4" }, "devDependencies": { "eslint": "^9.14.0", "eslint-config-treesitter": "^1.0.2", "prebuildify": "^6.0.1", - "tree-sitter-cli": "^0.24.4" + "tree-sitter-cli": "^0.25.8" }, "peerDependencies": { - "tree-sitter": "^0.21.1" + "tree-sitter": "^0.25.0" }, "peerDependenciesMeta": { "tree-sitter": { @@ -29,50 +29,72 @@ } }, "node_modules/@es-joy/jsdoccomment": { - "version": "0.49.0", - "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.49.0.tgz", - "integrity": "sha512-xjZTSFgECpb9Ohuk5yMX5RhUEbfeQcuOp8IF60e+wyzWEF0M5xeSgqsfLtvPEX8BIyOX9saZqzuGPmZ8oWc+5Q==", + "version": "0.50.2", + "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.50.2.tgz", + "integrity": "sha512-YAdE/IJSpwbOTiaURNCKECdAwqrJuFiZhylmesBcIRawtYKnBR2wxPhoIewMg+Yu+QuYvHfJNReWpoxGBKOChA==", "dev": true, + "license": "MIT", "dependencies": { + "@types/estree": "^1.0.6", + "@typescript-eslint/types": "^8.11.0", "comment-parser": "1.4.1", "esquery": "^1.6.0", "jsdoc-type-pratt-parser": "~4.1.0" }, "engines": { - "node": ">=16" + "node": ">=18" } }, "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==", + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz", + "integrity": "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==", "dev": true, + "license": "MIT", "dependencies": { - "eslint-visitor-keys": "^3.3.0" + "eslint-visitor-keys": "^3.4.3" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, + "funding": { + "url": "https://opencollective.com/eslint" + }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, + "node_modules/@eslint-community/eslint-utils/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, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, "node_modules/@eslint-community/regexpp": { "version": "4.12.1", "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", "dev": true, + "license": "MIT", "engines": { "node": "^12.0.0 || ^14.0.0 || >=16.0.0" } }, "node_modules/@eslint/config-array": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.18.0.tgz", - "integrity": "sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==", + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.0.tgz", + "integrity": "sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==", "dev": true, + "license": "Apache-2.0", "dependencies": { - "@eslint/object-schema": "^2.1.4", + "@eslint/object-schema": "^2.1.6", "debug": "^4.3.1", "minimatch": "^3.1.2" }, @@ -80,20 +102,35 @@ "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, + "node_modules/@eslint/config-helpers": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.3.1.tgz", + "integrity": "sha512-xR93k9WhrDYpXHORXpxVL5oHj3Era7wo6k/Wd8/IsQNnZUTzkGS29lyn3nAT05v6ltUuTFVCCYDEGfy2Or/sPA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, "node_modules/@eslint/core": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.7.0.tgz", - "integrity": "sha512-xp5Jirz5DyPYlPiKat8jaq0EmYvDXKKpzTbxXMpT9eqlRJkRKIz9AGMdlvYjih+im+QlhWrpvVjl8IPC/lHlUw==", + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.15.2.tgz", + "integrity": "sha512-78Md3/Rrxh83gCxoUc0EiciuOHsIITzLy53m3d9UyiW8y9Dj2D29FeETqyKA+BRK76tnTp6RXWb3pCay8Oyomg==", "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, "node_modules/@eslint/eslintrc": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.1.0.tgz", - "integrity": "sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz", + "integrity": "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==", "dev": true, + "license": "MIT", "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", @@ -113,29 +150,36 @@ } }, "node_modules/@eslint/js": { - "version": "9.14.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.14.0.tgz", - "integrity": "sha512-pFoEtFWCPyDOl+C6Ift+wC7Ro89otjigCf5vcuWqWgqNSQbRrpjSvdeE6ofLz4dHmyxD5f7gIdGT4+p36L6Twg==", + "version": "9.34.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.34.0.tgz", + "integrity": "sha512-EoyvqQnBNsV1CWaEJ559rxXL4c8V92gxirbawSmVUOWXlsRxxQXl6LmCpdUblgxgSkDIqKnhzba2SjRTI/A5Rw==", "dev": true, + "license": "MIT", "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" } }, "node_modules/@eslint/object-schema": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.4.tgz", - "integrity": "sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==", + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz", + "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==", "dev": true, + "license": "Apache-2.0", "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, "node_modules/@eslint/plugin-kit": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.0.tgz", - "integrity": "sha512-vH9PiIMMwvhCx31Af3HiGzsVNULDbyVkHXwlemn/B0TFj/00ho3y55efXrUZTfQipxoHC5u4xq6zblww1zm1Ig==", + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.3.5.tgz", + "integrity": "sha512-Z5kJ+wU3oA7MMIqVR9tyZRtjYPr4OC004Q4Rw7pgOKUOKkJfZ3O24nz3WYfGRpMDNmcOi3TwQOmgm7B7Tpii0w==", "dev": true, + "license": "Apache-2.0", "dependencies": { + "@eslint/core": "^0.15.2", "levn": "^0.4.1" }, "engines": { @@ -147,6 +191,7 @@ "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", "dev": true, + "license": "Apache-2.0", "engines": { "node": ">=18.18.0" } @@ -156,6 +201,7 @@ "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", "dev": true, + "license": "Apache-2.0", "dependencies": { "@humanfs/core": "^0.19.1", "@humanwhocodes/retry": "^0.3.0" @@ -169,6 +215,7 @@ "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", "dev": true, + "license": "Apache-2.0", "engines": { "node": ">=18.18" }, @@ -182,6 +229,7 @@ "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", "dev": true, + "license": "Apache-2.0", "engines": { "node": ">=12.22" }, @@ -191,10 +239,11 @@ } }, "node_modules/@humanwhocodes/retry": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.1.tgz", - "integrity": "sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==", + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", + "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", "dev": true, + "license": "Apache-2.0", "engines": { "node": ">=18.18" }, @@ -203,35 +252,40 @@ "url": "https://github.com/sponsors/nzakas" } }, - "node_modules/@pkgr/core": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz", - "integrity": "sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/unts" - } - }, "node_modules/@types/estree": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", - "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", - "dev": true + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true, + "license": "MIT" }, "node_modules/@types/json-schema": { "version": "7.0.15", "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", - "dev": true + "dev": true, + "license": "MIT" + }, + "node_modules/@typescript-eslint/types": { + "version": "8.41.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.41.0.tgz", + "integrity": "sha512-9EwxsWdVqh42afLbHP90n2VdHaWU/oWgbH2P0CfcNfdKL7CuKpwMQGjwev56vWu9cSKU7FWSu6r9zck6CVfnag==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } }, "node_modules/acorn": { - "version": "8.14.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", - "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", "dev": true, + "license": "MIT", "bin": { "acorn": "bin/acorn" }, @@ -244,6 +298,7 @@ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dev": true, + "license": "MIT", "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } @@ -253,6 +308,7 @@ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", @@ -269,6 +325,7 @@ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, @@ -284,6 +341,7 @@ "resolved": "https://registry.npmjs.org/are-docs-informative/-/are-docs-informative-0.0.2.tgz", "integrity": "sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==", "dev": true, + "license": "MIT", "engines": { "node": ">=14" } @@ -292,13 +350,15 @@ "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 + "dev": true, + "license": "Python-2.0" }, "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 + "dev": true, + "license": "MIT" }, "node_modules/base64-js": { "version": "1.5.1", @@ -332,10 +392,11 @@ } }, "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==", + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", "dev": true, + "license": "MIT", "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -370,6 +431,7 @@ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -379,6 +441,7 @@ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -401,6 +464,7 @@ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, + "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, @@ -412,13 +476,15 @@ "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 + "dev": true, + "license": "MIT" }, "node_modules/comment-parser": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.4.1.tgz", "integrity": "sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 12.0.0" } @@ -427,13 +493,15 @@ "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true + "dev": true, + "license": "MIT" }, "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==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, + "license": "MIT", "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", @@ -444,10 +512,11 @@ } }, "node_modules/debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", "dev": true, + "license": "MIT", "dependencies": { "ms": "^2.1.3" }, @@ -464,7 +533,8 @@ "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 + "dev": true, + "license": "MIT" }, "node_modules/end-of-stream": { "version": "1.4.4", @@ -475,17 +545,12 @@ "once": "^1.4.0" } }, - "node_modules/es-module-lexer": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", - "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==", - "dev": true - }, "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, + "license": "MIT", "engines": { "node": ">=10" }, @@ -494,31 +559,33 @@ } }, "node_modules/eslint": { - "version": "9.14.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.14.0.tgz", - "integrity": "sha512-c2FHsVBr87lnUtjP4Yhvk4yEhKrQavGafRA/Se1ouse8PfbfC/Qh9Mxa00yWsZRlqeUB9raXip0aiiUZkgnr9g==", + "version": "9.34.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.34.0.tgz", + "integrity": "sha512-RNCHRX5EwdrESy3Jc9o8ie8Bog+PeYvvSR8sDGoZxNFTvZ4dlxUB3WzQ3bQMztFrSRODGrLLj8g6OFuGY/aiQg==", "dev": true, + "license": "MIT", "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.12.1", - "@eslint/config-array": "^0.18.0", - "@eslint/core": "^0.7.0", - "@eslint/eslintrc": "^3.1.0", - "@eslint/js": "9.14.0", - "@eslint/plugin-kit": "^0.2.0", + "@eslint/config-array": "^0.21.0", + "@eslint/config-helpers": "^0.3.1", + "@eslint/core": "^0.15.2", + "@eslint/eslintrc": "^3.3.1", + "@eslint/js": "9.34.0", + "@eslint/plugin-kit": "^0.3.5", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", - "@humanwhocodes/retry": "^0.4.0", + "@humanwhocodes/retry": "^0.4.2", "@types/estree": "^1.0.6", "@types/json-schema": "^7.0.15", "ajv": "^6.12.4", "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", + "cross-spawn": "^7.0.6", "debug": "^4.3.2", "escape-string-regexp": "^4.0.0", - "eslint-scope": "^8.2.0", - "eslint-visitor-keys": "^4.2.0", - "espree": "^10.3.0", + "eslint-scope": "^8.4.0", + "eslint-visitor-keys": "^4.2.1", + "espree": "^10.4.0", "esquery": "^1.5.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", @@ -532,8 +599,7 @@ "lodash.merge": "^4.6.2", "minimatch": "^3.1.2", "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "text-table": "^0.2.0" + "optionator": "^0.9.3" }, "bin": { "eslint": "bin/eslint.js" @@ -558,6 +624,7 @@ "resolved": "https://registry.npmjs.org/eslint-config-treesitter/-/eslint-config-treesitter-1.0.2.tgz", "integrity": "sha512-OkzjA0oaNgYUFkGmo9T2cvRE7cxzh1dgSt0laO8Hdcypp9di8lebldoPivALXFusRb7s54J5exIw1w7l+g85Rg==", "dev": true, + "license": "MIT", "dependencies": { "eslint-plugin-jsdoc": "^50.2.4" }, @@ -566,22 +633,22 @@ } }, "node_modules/eslint-plugin-jsdoc": { - "version": "50.4.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.4.1.tgz", - "integrity": "sha512-OXIq+JJQPCLAKL473/esioFOwbXyRE5MAQ4HbZjcp3e+K3zdxt2uDpGs3FR+WezUXNStzEtTfgx15T+JFrVwBA==", + "version": "50.8.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.8.0.tgz", + "integrity": "sha512-UyGb5755LMFWPrZTEqqvTJ3urLz1iqj+bYOHFNag+sw3NvaMWP9K2z+uIn37XfNALmQLQyrBlJ5mkiVPL7ADEg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { - "@es-joy/jsdoccomment": "~0.49.0", + "@es-joy/jsdoccomment": "~0.50.2", "are-docs-informative": "^0.0.2", "comment-parser": "1.4.1", - "debug": "^4.3.6", + "debug": "^4.4.1", "escape-string-regexp": "^4.0.0", - "espree": "^10.1.0", + "espree": "^10.3.0", "esquery": "^1.6.0", - "parse-imports": "^2.1.1", - "semver": "^7.6.3", - "spdx-expression-parse": "^4.0.0", - "synckit": "^0.9.1" + "parse-imports-exports": "^0.2.4", + "semver": "^7.7.2", + "spdx-expression-parse": "^4.0.0" }, "engines": { "node": ">=18" @@ -591,10 +658,11 @@ } }, "node_modules/eslint-scope": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.2.0.tgz", - "integrity": "sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==", + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz", + "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" @@ -607,22 +675,11 @@ } }, "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/eslint/node_modules/eslint-visitor-keys": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", - "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", "dev": true, + "license": "Apache-2.0", "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, @@ -631,27 +688,16 @@ } }, "node_modules/espree": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", - "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz", + "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { - "acorn": "^8.14.0", + "acorn": "^8.15.0", "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^4.2.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "eslint-visitor-keys": "^4.2.1" }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/espree/node_modules/eslint-visitor-keys": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", - "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", - "dev": true, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, @@ -664,6 +710,7 @@ "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "estraverse": "^5.1.0" }, @@ -676,6 +723,7 @@ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "estraverse": "^5.2.0" }, @@ -688,6 +736,7 @@ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, + "license": "BSD-2-Clause", "engines": { "node": ">=4.0" } @@ -697,6 +746,7 @@ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true, + "license": "BSD-2-Clause", "engines": { "node": ">=0.10.0" } @@ -705,25 +755,29 @@ "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 + "dev": true, + "license": "MIT" }, "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 + "dev": true, + "license": "MIT" }, "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 + "dev": true, + "license": "MIT" }, "node_modules/file-entry-cache": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", "dev": true, + "license": "MIT", "dependencies": { "flat-cache": "^4.0.0" }, @@ -736,6 +790,7 @@ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, + "license": "MIT", "dependencies": { "locate-path": "^6.0.0", "path-exists": "^4.0.0" @@ -752,6 +807,7 @@ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", "dev": true, + "license": "MIT", "dependencies": { "flatted": "^3.2.9", "keyv": "^4.5.4" @@ -761,10 +817,11 @@ } }, "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 + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", + "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", + "dev": true, + "license": "ISC" }, "node_modules/fs-constants": { "version": "1.0.0", @@ -777,6 +834,7 @@ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, + "license": "ISC", "dependencies": { "is-glob": "^4.0.3" }, @@ -789,6 +847,7 @@ "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=18" }, @@ -801,6 +860,7 @@ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -830,15 +890,17 @@ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true, + "license": "MIT", "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==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", "dev": true, + "license": "MIT", "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" @@ -855,6 +917,7 @@ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.8.19" } @@ -870,6 +933,7 @@ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -879,6 +943,7 @@ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, + "license": "MIT", "dependencies": { "is-extglob": "^2.1.1" }, @@ -890,13 +955,15 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true + "dev": true, + "license": "ISC" }, "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, + "license": "MIT", "dependencies": { "argparse": "^2.0.1" }, @@ -909,6 +976,7 @@ "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-4.1.0.tgz", "integrity": "sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==", "dev": true, + "license": "MIT", "engines": { "node": ">=12.0.0" } @@ -917,25 +985,29 @@ "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 + "dev": true, + "license": "MIT" }, "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 + "dev": true, + "license": "MIT" }, "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 + "dev": true, + "license": "MIT" }, "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, + "license": "MIT", "dependencies": { "json-buffer": "3.0.1" } @@ -945,6 +1017,7 @@ "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, + "license": "MIT", "dependencies": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" @@ -958,6 +1031,7 @@ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, + "license": "MIT", "dependencies": { "p-locate": "^5.0.0" }, @@ -972,13 +1046,15 @@ "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 + "dev": true, + "license": "MIT" }, "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, + "license": "ISC", "dependencies": { "brace-expansion": "^1.1.7" }, @@ -1005,13 +1081,15 @@ "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true + "dev": true, + "license": "MIT" }, "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 + "dev": true, + "license": "MIT" }, "node_modules/node-abi": { "version": "3.62.0", @@ -1026,17 +1104,19 @@ } }, "node_modules/node-addon-api": { - "version": "8.2.2", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.2.2.tgz", - "integrity": "sha512-9emqXAKhVoNrQ792nLI/wpzPpJ/bj/YXxW0CvAau1+RdGBcCRF1Dmz7719zgVsQNrzHl9Tzn3ImZ4qWFarWL0A==", + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.5.0.tgz", + "integrity": "sha512-/bRZty2mXUIFY/xU5HLvveNHlswNJej+RnxBjOMkidWfwZzgTbPG1E3K5TOxRLOR+5hX7bSofy8yf1hZevMS8A==", + "license": "MIT", "engines": { "node": "^18 || ^20 || >= 21" } }, "node_modules/node-gyp-build": { - "version": "4.8.2", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.2.tgz", - "integrity": "sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==", + "version": "4.8.4", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.4.tgz", + "integrity": "sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==", + "license": "MIT", "bin": { "node-gyp-build": "bin.js", "node-gyp-build-optional": "optional.js", @@ -1069,6 +1149,7 @@ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", "dev": true, + "license": "MIT", "dependencies": { "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", @@ -1086,6 +1167,7 @@ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, + "license": "MIT", "dependencies": { "yocto-queue": "^0.1.0" }, @@ -1101,6 +1183,7 @@ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, + "license": "MIT", "dependencies": { "p-limit": "^3.0.2" }, @@ -1116,6 +1199,7 @@ "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, + "license": "MIT", "dependencies": { "callsites": "^3.0.0" }, @@ -1123,24 +1207,29 @@ "node": ">=6" } }, - "node_modules/parse-imports": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/parse-imports/-/parse-imports-2.2.1.tgz", - "integrity": "sha512-OL/zLggRp8mFhKL0rNORUTR4yBYujK/uU+xZL+/0Rgm2QE4nLO9v8PzEweSJEbMGKmDRjJE4R3IMJlL2di4JeQ==", + "node_modules/parse-imports-exports": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/parse-imports-exports/-/parse-imports-exports-0.2.4.tgz", + "integrity": "sha512-4s6vd6dx1AotCx/RCI2m7t7GCh5bDRUtGNvRfHSP2wbBQdMi67pPe7mtzmgwcaQ8VKK/6IB7Glfyu3qdZJPybQ==", "dev": true, + "license": "MIT", "dependencies": { - "es-module-lexer": "^1.5.3", - "slashes": "^3.0.12" - }, - "engines": { - "node": ">= 18" + "parse-statements": "1.0.11" } }, + "node_modules/parse-statements": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/parse-statements/-/parse-statements-1.0.11.tgz", + "integrity": "sha512-HlsyYdMBnbPQ9Jr/VgJ1YF4scnldvJpJxCVx6KgqPL4dxppsWrJHCIIxQXMJrqGnsRkNPATbeMJ8Yxu7JMsYcA==", + "dev": true, + "license": "MIT" + }, "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, + "license": "MIT", "engines": { "node": ">=8" } @@ -1176,6 +1265,7 @@ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.8.0" } @@ -1195,6 +1285,7 @@ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -1218,6 +1309,7 @@ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } @@ -1243,10 +1335,11 @@ ] }, "node_modules/semver": { - "version": "7.6.3", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", - "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" }, @@ -1259,6 +1352,7 @@ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, + "license": "MIT", "dependencies": { "shebang-regex": "^3.0.0" }, @@ -1271,37 +1365,35 @@ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/slashes": { - "version": "3.0.12", - "resolved": "https://registry.npmjs.org/slashes/-/slashes-3.0.12.tgz", - "integrity": "sha512-Q9VME8WyGkc7pJf6QEkj3wE+2CnvZMI+XJhwdTPR8Z/kWQRXi7boAWLDibRPyHRTUTPx5FaU7MsyrjI3yLB4HA==", - "dev": true - }, "node_modules/spdx-exceptions": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", - "dev": true + "dev": true, + "license": "CC-BY-3.0" }, "node_modules/spdx-expression-parse": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-4.0.0.tgz", "integrity": "sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==", "dev": true, + "license": "MIT", "dependencies": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" } }, "node_modules/spdx-license-ids": { - "version": "3.0.20", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.20.tgz", - "integrity": "sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==", - "dev": true + "version": "3.0.22", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.22.tgz", + "integrity": "sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==", + "dev": true, + "license": "CC0-1.0" }, "node_modules/string_decoder": { "version": "1.3.0", @@ -1317,6 +1409,7 @@ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" }, @@ -1329,6 +1422,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -1336,22 +1430,6 @@ "node": ">=8" } }, - "node_modules/synckit": { - "version": "0.9.2", - "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.9.2.tgz", - "integrity": "sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==", - "dev": true, - "dependencies": { - "@pkgr/core": "^0.1.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/unts" - } - }, "node_modules/tar-fs": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", @@ -1380,30 +1458,26 @@ "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==", + "version": "0.25.0", + "resolved": "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.25.0.tgz", + "integrity": "sha512-PGZZzFW63eElZJDe/b/R/LbsjDDYJa5UEjLZJB59RQsMX+fo0j54fqBPn1MGKav/QNa0JR0zBiVaikYDWCj5KQ==", "hasInstallScript": true, + "license": "MIT", "optional": true, "peer": true, "dependencies": { - "node-addon-api": "^8.0.0", - "node-gyp-build": "^4.8.0" + "node-addon-api": "^8.3.0", + "node-gyp-build": "^4.8.4" } }, "node_modules/tree-sitter-cli": { - "version": "0.24.4", - "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.24.4.tgz", - "integrity": "sha512-I4sdtDidnujYL0tR0Re9q0UJt5KrITf2m+GMHjT4LH6IC6kpM6eLzSR7RS36Z4t5ZQBjDHvg2QUJHAWQi3P2TA==", + "version": "0.25.8", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.25.8.tgz", + "integrity": "sha512-avR7qo4qT+dNv2jj4M2e79vfc2etbWK6/umWcRsnEX1LTRhUL6p5AgGe6dP7+cV/RYFFk/VBz1rJuVCk+w5H2A==", "dev": true, "hasInstallScript": true, + "license": "MIT", "bin": { "tree-sitter": "cli.js" }, @@ -1411,17 +1485,12 @@ "node": ">=12.0.0" } }, - "node_modules/tslib": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", - "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==", - "dev": 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, + "license": "MIT", "dependencies": { "prelude-ls": "^1.2.1" }, @@ -1434,6 +1503,7 @@ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "punycode": "^2.1.0" } @@ -1449,6 +1519,7 @@ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, + "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -1464,6 +1535,7 @@ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -1479,6 +1551,7 @@ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=10" }, diff --git a/package.json b/package.json index 008009c9..68ec2d32 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "name": "Max Brunsfeld", "email": "maxbrunsfeld@gmail.com" }, - "contributors": [ + "maintainers": [ { "name": "Amaan Qureshi", "email": "amaanq12@gmail.com" @@ -33,17 +33,17 @@ "*.wasm" ], "dependencies": { - "node-addon-api": "^8.2.2", - "node-gyp-build": "^4.8.2" + "node-addon-api": "^8.3.1", + "node-gyp-build": "^4.8.4" }, "devDependencies": { "eslint": "^9.14.0", "eslint-config-treesitter": "^1.0.2", - "tree-sitter-cli": "^0.24.4", - "prebuildify": "^6.0.1" + "prebuildify": "^6.0.1", + "tree-sitter-cli": "^0.25.8" }, "peerDependencies": { - "tree-sitter": "^0.21.1" + "tree-sitter": "^0.25.0" }, "peerDependenciesMeta": { "tree-sitter": { diff --git a/pyproject.toml b/pyproject.toml index e46e0e76..eb95881e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools>=42", "wheel"] +requires = ["setuptools>=62.4.0", "wheel"] build-backend = "setuptools.build_meta" [project] @@ -9,7 +9,6 @@ version = "0.23.1" keywords = ["incremental", "parsing", "tree-sitter", "javascript"] classifiers = [ "Intended Audience :: Developers", - "License :: OSI Approved :: MIT License", "Topic :: Software Development :: Compilers", "Topic :: Text Processing :: Linguistic", "Typing :: Typed", @@ -18,7 +17,7 @@ authors = [ { name = "Max Brunsfeld", email = "maxbrunsfeld@gmail.com" }, { name = "Amaan Qureshi", email = "amaanq12@gmail.com" }, ] -requires-python = ">=3.9" +requires-python = ">=3.10" license.text = "MIT" readme = "README.md" @@ -26,8 +25,8 @@ readme = "README.md" Homepage = "https://github.com/tree-sitter/tree-sitter-javascript" [project.optional-dependencies] -core = ["tree-sitter~=0.22"] +core = ["tree-sitter~=0.24"] [tool.cibuildwheel] -build = "cp39-*" +build = "cp310-*" build-frontend = "build" diff --git a/setup.py b/setup.py index 9e4125f6..2313a619 100644 --- a/setup.py +++ b/setup.py @@ -1,15 +1,36 @@ -from os.path import isdir, join +from os import path from platform import system +from sysconfig import get_config_var from setuptools import Extension, find_packages, setup from setuptools.command.build import build +from setuptools.command.egg_info import egg_info from wheel.bdist_wheel import bdist_wheel +sources = [ + "bindings/python/tree_sitter_javascript/binding.c", + "src/parser.c", +] +if path.exists("src/scanner.c"): + sources.append("src/scanner.c") + +macros: list[tuple[str, str | None]] = [ + ("PY_SSIZE_T_CLEAN", None), + ("TREE_SITTER_HIDE_SYMBOLS", None), +] +if limited_api := not get_config_var("Py_GIL_DISABLED"): + macros.append(("Py_LIMITED_API", "0x030A0000")) + +if system() != "Windows": + cflags = ["-std=c11", "-fvisibility=hidden"] +else: + cflags = ["/std:c11", "/utf-8"] + class Build(build): def run(self): - if isdir("queries"): - dest = join(self.build_lib, "tree_sitter_javascript", "queries") + if path.isdir("queries"): + dest = path.join(self.build_lib, "tree_sitter_javascript", "queries") self.copy_tree("queries", dest) super().run() @@ -18,10 +39,17 @@ class BdistWheel(bdist_wheel): def get_tag(self): python, abi, platform = super().get_tag() if python.startswith("cp"): - python, abi = "cp39", "abi3" + python, abi = "cp310", "abi3" return python, abi, platform +class EggInfo(egg_info): + def find_sources(self): + super().find_sources() + self.filelist.recursive_include("queries", "*.scm") + self.filelist.include("src/tree_sitter/*.h") + + setup( packages=find_packages("bindings/python"), package_dir={"": "bindings/python"}, @@ -33,30 +61,17 @@ def get_tag(self): ext_modules=[ Extension( name="_binding", - sources=[ - "bindings/python/tree_sitter_javascript/binding.c", - "src/parser.c", - "src/scanner.c", - ], - extra_compile_args=[ - "-std=c11", - "-fvisibility=hidden", - ] if system() != "Windows" else [ - "/std:c11", - "/utf-8", - ], - define_macros=[ - ("Py_LIMITED_API", "0x03090000"), - ("PY_SSIZE_T_CLEAN", None), - ("TREE_SITTER_HIDE_SYMBOLS", None), - ], + sources=sources, + extra_compile_args=cflags, + define_macros=macros, include_dirs=["src"], - py_limited_api=True, + py_limited_api=limited_api, ) ], cmdclass={ "build": Build, - "bdist_wheel": BdistWheel + "bdist_wheel": BdistWheel, + "egg_info": EggInfo, }, zip_safe=False ) From e7fa2b658ccf54667f5e2af1d92ecb7058ee69a0 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Mon, 1 Sep 2025 02:06:14 -0400 Subject: [PATCH 2/7] ci: use macos-latest --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8abad6cc..e72d1f7f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest, macos-14] + os: [ubuntu-latest, windows-latest, macos-latest] steps: - name: Checkout repository uses: actions/checkout@v5 From a2d9d68cf849a257c87ea56ae8d9832067c1c3b1 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Mon, 1 Sep 2025 01:23:18 -0400 Subject: [PATCH 3/7] feat: add `using` declaration --- grammar.js | 21 ++++++++++++ test/corpus/statements.txt | 65 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 86 insertions(+) diff --git a/grammar.js b/grammar.js index 3311b300..73590846 100644 --- a/grammar.js +++ b/grammar.js @@ -181,6 +181,7 @@ module.exports = grammar({ $.class_declaration, $.lexical_declaration, $.variable_declaration, + $.using_declaration, ), // @@ -286,6 +287,15 @@ module.exports = grammar({ $._semicolon, ), + using_declaration: $ => seq( + field('kind', choice( + 'using', + seq('await', 'using'), + )), + commaSep1($.variable_declarator), + $._semicolon, + ), + variable_declarator: $ => seq( field('name', choice($.identifier, $._destructuring_pattern)), optional($._initializer), @@ -360,6 +370,17 @@ module.exports = grammar({ )), optional($._automatic_semicolon), ), + seq( + field('kind', choice( + 'using', + seq('await', 'using'), + )), + field('left', choice( + $.identifier, + $._destructuring_pattern, + )), + optional($._automatic_semicolon), + ), ), field('operator', choice('in', 'of')), field('right', $._expressions), diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index d4f615ce..fcf3269b 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -870,6 +870,71 @@ var x, y = {}, z; (variable_declarator (identifier)))) +============================================ +Using declarations +============================================ + +using file = getFile(); +await using resource = getResource(); +using x = a, y = b; + +--- + +(program + (using_declaration + (variable_declarator + (identifier) + (call_expression + (identifier) + (arguments)))) + (using_declaration + (variable_declarator + (identifier) + (call_expression + (identifier) + (arguments)))) + (using_declaration + (variable_declarator + (identifier) + (identifier)) + (variable_declarator + (identifier) + (identifier)))) + +============================================ +Using declarations in for loops +============================================ + +for (using item of items) { + process(item); +} + +for await (await using resource of resources) { + consume(resource); +} + +--- + +(program + (for_in_statement + (identifier) + (identifier) + (statement_block + (expression_statement + (call_expression + (identifier) + (arguments + (identifier)))))) + (for_in_statement + (identifier) + (identifier) + (statement_block + (expression_statement + (call_expression + (identifier) + (arguments + (identifier))))))) + ============================================ Comments ============================================ From bcd28f3544af9da202bb158613eed64284c08d64 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Mon, 1 Sep 2025 01:59:13 -0400 Subject: [PATCH 4/7] fix: allow `of` as identifiers in for loops --- grammar.js | 9 ++++++++- test/corpus/statements.txt | 27 +++++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 1 deletion(-) diff --git a/grammar.js b/grammar.js index 73590846..2cd75614 100644 --- a/grammar.js +++ b/grammar.js @@ -297,7 +297,11 @@ module.exports = grammar({ ), variable_declarator: $ => seq( - field('name', choice($.identifier, $._destructuring_pattern)), + field('name', choice( + $.identifier, + alias('of', $.identifier), + $._destructuring_pattern, + )), optional($._initializer), ), @@ -358,6 +362,7 @@ module.exports = grammar({ field('kind', 'var'), field('left', choice( $.identifier, + alias('of', $.identifier), $._destructuring_pattern, )), optional($._initializer), @@ -366,6 +371,7 @@ module.exports = grammar({ field('kind', choice('let', 'const')), field('left', choice( $.identifier, + alias('of', $.identifier), $._destructuring_pattern, )), optional($._automatic_semicolon), @@ -377,6 +383,7 @@ module.exports = grammar({ )), field('left', choice( $.identifier, + alias('of', $.identifier), $._destructuring_pattern, )), optional($._automatic_semicolon), diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index fcf3269b..3ec3329f 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -935,6 +935,33 @@ for await (await using resource of resources) { (arguments (identifier))))))) +============================================ +'of' as identifier in declarations +============================================ + +for (let of of []) break; +for (const of = '';;) break; +const of = 2; + +--- + +(program + (for_in_statement + (identifier) + (array) + (break_statement)) + (for_statement + (lexical_declaration + (variable_declarator + (identifier) + (string))) + (empty_statement) + (break_statement)) + (lexical_declaration + (variable_declarator + (identifier) + (number)))) + ============================================ Comments ============================================ From 91d3051c249c0f21c6c5e063c90209cb9f826885 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Mon, 1 Sep 2025 02:49:19 -0400 Subject: [PATCH 5/7] feat: add reserved words --- grammar.js | 50 ++++++++++++++++++++++++++++++++++--- test/corpus/expressions.txt | 2 +- test/corpus/statements.txt | 3 +-- 3 files changed, 49 insertions(+), 6 deletions(-) diff --git a/grammar.js b/grammar.js index 2cd75614..b4f6d338 100644 --- a/grammar.js +++ b/grammar.js @@ -30,6 +30,48 @@ module.exports = grammar({ /[\s\p{Zs}\uFEFF\u2028\u2029\u2060\u200B]/, ], + reserved: { + // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar#reserved_words + global: $ => [ + 'break', + 'case', + 'catch', + 'class', + 'const', + 'continue', + 'debugger', + 'default', + 'delete', + 'do', + 'else', + 'export', + 'extends', + 'false', + 'finally', + 'for', + 'function', + 'if', + 'import', + 'in', + 'instanceof', + 'new', + 'null', + 'return', + 'super', + 'switch', + 'this', + 'throw', + 'true', + 'try', + 'typeof', + 'var', + 'void', + 'while', + 'with', + ], + properties: $ => [], + }, + supertypes: $ => [ $.statement, $.declaration, @@ -173,6 +215,7 @@ module.exports = grammar({ _module_export_name: $ => choice( $.identifier, $.string, + 'default', ), declaration: $ => choice( @@ -841,7 +884,8 @@ module.exports = grammar({ choice('.', field('optional_chain', $.optional_chain)), field('property', choice( $.private_property_identifier, - alias($.identifier, $.property_identifier))), + reserved('properties', alias($.identifier, $.property_identifier)), + )), )), subscript_expression: $ => prec.right('member', seq( @@ -1224,7 +1268,7 @@ module.exports = grammar({ field('value', choice($.pattern, $.assignment_pattern)), ), - _property_name: $ => choice( + _property_name: $ => reserved('properties', choice( alias( choice($.identifier, $._reserved_identifier), $.property_identifier, @@ -1233,7 +1277,7 @@ module.exports = grammar({ $.string, $.number, $.computed_property_name, - ), + )), computed_property_name: $ => seq( '[', diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index 6d8f1740..7b020859 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -193,7 +193,7 @@ Function calls with template strings ============================================ f `hello`; -f +f `hello`; --- diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index 3ec3329f..81b3c80c 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -304,8 +304,7 @@ export { "string import" as "string export" } from 'foo'; (export_statement (export_clause (export_specifier - name: (identifier) - alias: (identifier)))) + name: (identifier)))) (export_statement source: (string (string_fragment))) From fc5faf400dcfc4a90b170df2f1959bcff6ae3baf Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Mon, 1 Sep 2025 02:58:50 -0400 Subject: [PATCH 6/7] feat: add `await` to reserved identifiers Co-authored-by: FnControlOption <70830482+FnControlOption@users.noreply.github.com> --- grammar.js | 5 ++++- test/corpus/expressions.txt | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+), 1 deletion(-) diff --git a/grammar.js b/grammar.js index b4f6d338..7ca23ffb 100644 --- a/grammar.js +++ b/grammar.js @@ -132,8 +132,10 @@ module.exports = grammar({ conflicts: $ => [ [$.primary_expression, $._property_name], - [$.primary_expression, $._property_name, $.arrow_function], + [$.primary_expression, $.await_expression], + [$.primary_expression, $.await_expression, $._property_name], [$.primary_expression, $.arrow_function], + [$.primary_expression, $.arrow_function, $._property_name], [$.primary_expression, $.method_definition], [$.primary_expression, $.rest_pattern], [$.primary_expression, $.pattern], @@ -1289,6 +1291,7 @@ module.exports = grammar({ 'get', 'set', 'async', + 'await', 'static', 'export', 'let', diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index 7b020859..bed24104 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -158,6 +158,7 @@ arr[0]`hello`; f`hello``goodbye`; --- + (program (expression_statement (call_expression @@ -530,6 +531,7 @@ Objects with reserved words for keys set: function () {}, static: true, async: true, + await: true, }; --- @@ -558,6 +560,9 @@ Objects with reserved words for keys (pair (property_identifier) (true)) + (pair + (property_identifier) + (true)) (pair (property_identifier) (true))))) @@ -698,6 +703,7 @@ Classes with reserved words as methods class Foo { catch() {} finally() {} + await() {} } --- @@ -710,6 +716,10 @@ class Foo { (property_identifier) (formal_parameters) (statement_block)) + (method_definition + (property_identifier) + (formal_parameters) + (statement_block)) (method_definition (property_identifier) (formal_parameters) @@ -2169,6 +2179,30 @@ yield db.users.where('[endpoint+email]') (string (string_fragment))))))) +============================================ +Reserved words as identifiers +============================================ + +function await(await) { await: await (await + await (0)); } + +--- + +(program + (function_declaration + (identifier) + (formal_parameters (identifier)) + (statement_block + (labeled_statement + (statement_identifier) + (expression_statement + (await_expression + (parenthesized_expression + (await_expression + (unary_expression + (await_expression + (parenthesized_expression + (number)))))))))))) + ============================================ JSX ============================================ From 7f7f4a6deccf1b4b0fdafff02caf3ff59bdabc0d Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Mon, 1 Sep 2025 02:15:16 -0400 Subject: [PATCH 7/7] chore: generate --- src/grammar.json | 420 +- src/node-types.json | 68 +- src/parser.c | 113781 ++++++++++++++++++++---------------- src/tree_sitter/array.h | 3 +- src/tree_sitter/parser.h | 34 +- 5 files changed, 62731 insertions(+), 51575 deletions(-) diff --git a/src/grammar.json b/src/grammar.json index a662e58f..8623996a 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -292,6 +292,10 @@ { "type": "SYMBOL", "name": "string" + }, + { + "type": "STRING", + "value": "default" } ] }, @@ -317,6 +321,10 @@ { "type": "SYMBOL", "name": "variable_declaration" + }, + { + "type": "SYMBOL", + "name": "using_declaration" } ] }, @@ -760,6 +768,66 @@ } ] }, + "using_declaration": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "kind", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "using" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "await" + }, + { + "type": "STRING", + "value": "using" + } + ] + } + ] + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "variable_declarator" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "variable_declarator" + } + ] + } + } + ] + }, + { + "type": "SYMBOL", + "name": "_semicolon" + } + ] + }, "variable_declarator": { "type": "SEQ", "members": [ @@ -773,6 +841,15 @@ "type": "SYMBOL", "name": "identifier" }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "of" + }, + "named": true, + "value": "identifier" + }, { "type": "SYMBOL", "name": "_destructuring_pattern" @@ -1108,6 +1185,15 @@ "type": "SYMBOL", "name": "identifier" }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "of" + }, + "named": true, + "value": "identifier" + }, { "type": "SYMBOL", "name": "_destructuring_pattern" @@ -1159,6 +1245,84 @@ "type": "SYMBOL", "name": "identifier" }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "of" + }, + "named": true, + "value": "identifier" + }, + { + "type": "SYMBOL", + "name": "_destructuring_pattern" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_automatic_semicolon" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "kind", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "using" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "await" + }, + { + "type": "STRING", + "value": "using" + } + ] + } + ] + } + }, + { + "type": "FIELD", + "name": "left", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "of" + }, + "named": true, + "value": "identifier" + }, { "type": "SYMBOL", "name": "_destructuring_pattern" @@ -3581,13 +3745,17 @@ "name": "private_property_identifier" }, { - "type": "ALIAS", + "type": "RESERVED", "content": { - "type": "SYMBOL", - "name": "identifier" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "property_identifier" }, - "named": true, - "value": "property_identifier" + "context_name": "properties" } ] } @@ -6512,43 +6680,47 @@ ] }, "_property_name": { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "_reserved_identifier" - } - ] + "type": "RESERVED", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_reserved_identifier" + } + ] + }, + "named": true, + "value": "property_identifier" }, - "named": true, - "value": "property_identifier" - }, - { - "type": "SYMBOL", - "name": "private_property_identifier" - }, - { - "type": "SYMBOL", - "name": "string" - }, - { - "type": "SYMBOL", - "name": "number" - }, - { - "type": "SYMBOL", - "name": "computed_property_name" - } - ] + { + "type": "SYMBOL", + "name": "private_property_identifier" + }, + { + "type": "SYMBOL", + "name": "string" + }, + { + "type": "SYMBOL", + "name": "number" + }, + { + "type": "SYMBOL", + "name": "computed_property_name" + } + ] + }, + "context_name": "properties" }, "computed_property_name": { "type": "SEQ", @@ -6582,6 +6754,10 @@ "type": "STRING", "value": "async" }, + { + "type": "STRING", + "value": "await" + }, { "type": "STRING", "value": "static" @@ -6631,13 +6807,22 @@ ], [ "primary_expression", - "_property_name", - "arrow_function" + "await_expression" + ], + [ + "primary_expression", + "await_expression", + "_property_name" ], [ "primary_expression", "arrow_function" ], + [ + "primary_expression", + "arrow_function", + "_property_name" + ], [ "primary_expression", "method_definition" @@ -6927,5 +7112,150 @@ "expression", "primary_expression", "pattern" - ] -} + ], + "reserved": { + "global": [ + { + "type": "STRING", + "value": "break" + }, + { + "type": "STRING", + "value": "case" + }, + { + "type": "STRING", + "value": "catch" + }, + { + "type": "STRING", + "value": "class" + }, + { + "type": "STRING", + "value": "const" + }, + { + "type": "STRING", + "value": "continue" + }, + { + "type": "STRING", + "value": "debugger" + }, + { + "type": "STRING", + "value": "default" + }, + { + "type": "STRING", + "value": "delete" + }, + { + "type": "STRING", + "value": "do" + }, + { + "type": "STRING", + "value": "else" + }, + { + "type": "STRING", + "value": "export" + }, + { + "type": "STRING", + "value": "extends" + }, + { + "type": "STRING", + "value": "false" + }, + { + "type": "STRING", + "value": "finally" + }, + { + "type": "STRING", + "value": "for" + }, + { + "type": "STRING", + "value": "function" + }, + { + "type": "STRING", + "value": "if" + }, + { + "type": "STRING", + "value": "import" + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "STRING", + "value": "instanceof" + }, + { + "type": "STRING", + "value": "new" + }, + { + "type": "STRING", + "value": "null" + }, + { + "type": "STRING", + "value": "return" + }, + { + "type": "STRING", + "value": "super" + }, + { + "type": "STRING", + "value": "switch" + }, + { + "type": "STRING", + "value": "this" + }, + { + "type": "STRING", + "value": "throw" + }, + { + "type": "STRING", + "value": "true" + }, + { + "type": "STRING", + "value": "try" + }, + { + "type": "STRING", + "value": "typeof" + }, + { + "type": "STRING", + "value": "var" + }, + { + "type": "STRING", + "value": "void" + }, + { + "type": "STRING", + "value": "while" + }, + { + "type": "STRING", + "value": "with" + } + ], + "properties": [] + } +} \ No newline at end of file diff --git a/src/node-types.json b/src/node-types.json index 7f751b3e..e508ff19 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -19,6 +19,10 @@ "type": "lexical_declaration", "named": true }, + { + "type": "using_declaration", + "named": true + }, { "type": "variable_declaration", "named": true @@ -1090,6 +1094,10 @@ "multiple": false, "required": false, "types": [ + { + "type": "default", + "named": false + }, { "type": "identifier", "named": true @@ -1104,6 +1112,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "default", + "named": false + }, { "type": "identifier", "named": true @@ -1278,9 +1290,13 @@ ] }, "kind": { - "multiple": false, + "multiple": true, "required": false, "types": [ + { + "type": "await", + "named": false + }, { "type": "const", "named": false @@ -1289,6 +1305,10 @@ "type": "let", "named": false }, + { + "type": "using", + "named": false + }, { "type": "var", "named": false @@ -1707,6 +1727,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "default", + "named": false + }, { "type": "identifier", "named": true @@ -2162,7 +2186,7 @@ "fields": {}, "children": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "identifier", @@ -2927,6 +2951,36 @@ } } }, + { + "type": "using_declaration", + "named": true, + "fields": { + "kind": { + "multiple": true, + "required": true, + "types": [ + { + "type": "await", + "named": false + }, + { + "type": "using", + "named": false + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "variable_declarator", + "named": true + } + ] + } + }, { "type": "variable_declaration", "named": true, @@ -3297,7 +3351,8 @@ }, { "type": "comment", - "named": true + "named": true, + "extra": true }, { "type": "const", @@ -3373,7 +3428,8 @@ }, { "type": "html_comment", - "named": true + "named": true, + "extra": true }, { "type": "identifier", @@ -3511,6 +3567,10 @@ "type": "undefined", "named": true }, + { + "type": "using", + "named": false + }, { "type": "var", "named": false diff --git a/src/parser.c b/src/parser.c index fe2d3a63..9dc3212e 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,19 +1,23 @@ +/* Automatically @generated by tree-sitter v0.25.8 */ + #include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 14 -#define STATE_COUNT 1722 -#define LARGE_STATE_COUNT 326 -#define SYMBOL_COUNT 259 +#define LANGUAGE_VERSION 15 +#define STATE_COUNT 1870 +#define LARGE_STATE_COUNT 387 +#define SYMBOL_COUNT 261 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 133 +#define TOKEN_COUNT 134 #define EXTERNAL_TOKEN_COUNT 8 #define FIELD_COUNT 36 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 111 +#define MAX_RESERVED_WORD_SET_SIZE 35 +#define PRODUCTION_ID_COUNT 121 +#define SUPERTYPE_COUNT 5 enum ts_symbol_identifiers { sym_identifier = 1, @@ -31,253 +35,255 @@ enum ts_symbol_identifiers { anon_sym_var = 13, anon_sym_let = 14, anon_sym_const = 15, - anon_sym_else = 16, - anon_sym_if = 17, - anon_sym_switch = 18, - anon_sym_for = 19, - anon_sym_LPAREN = 20, - anon_sym_SEMI = 21, - anon_sym_RPAREN = 22, - anon_sym_await = 23, - anon_sym_in = 24, - anon_sym_of = 25, - anon_sym_while = 26, - anon_sym_do = 27, - anon_sym_try = 28, - anon_sym_break = 29, - anon_sym_continue = 30, - anon_sym_debugger = 31, - anon_sym_return = 32, - anon_sym_throw = 33, - anon_sym_COLON = 34, - anon_sym_case = 35, - anon_sym_catch = 36, - anon_sym_finally = 37, - anon_sym_yield = 38, - anon_sym_EQ = 39, - anon_sym_LBRACK = 40, - anon_sym_RBRACK = 41, - sym_html_character_reference = 42, - anon_sym_LT = 43, - anon_sym_GT = 44, - sym_jsx_identifier = 45, - anon_sym_DOT = 46, - anon_sym_LT_SLASH = 47, - anon_sym_SLASH_GT = 48, - anon_sym_DQUOTE = 49, - anon_sym_SQUOTE = 50, - sym_unescaped_double_jsx_string_fragment = 51, - sym_unescaped_single_jsx_string_fragment = 52, - anon_sym_class = 53, - anon_sym_extends = 54, - anon_sym_async = 55, - anon_sym_function = 56, - anon_sym_EQ_GT = 57, - sym_optional_chain = 58, - anon_sym_new = 59, - anon_sym_PLUS_EQ = 60, - anon_sym_DASH_EQ = 61, - anon_sym_STAR_EQ = 62, - anon_sym_SLASH_EQ = 63, - anon_sym_PERCENT_EQ = 64, - anon_sym_CARET_EQ = 65, - anon_sym_AMP_EQ = 66, - anon_sym_PIPE_EQ = 67, - anon_sym_GT_GT_EQ = 68, - anon_sym_GT_GT_GT_EQ = 69, - anon_sym_LT_LT_EQ = 70, - anon_sym_STAR_STAR_EQ = 71, - anon_sym_AMP_AMP_EQ = 72, - anon_sym_PIPE_PIPE_EQ = 73, - anon_sym_QMARK_QMARK_EQ = 74, - anon_sym_DOT_DOT_DOT = 75, - anon_sym_AMP_AMP = 76, - anon_sym_PIPE_PIPE = 77, - anon_sym_GT_GT = 78, - anon_sym_GT_GT_GT = 79, - anon_sym_LT_LT = 80, - anon_sym_AMP = 81, - anon_sym_CARET = 82, - anon_sym_PIPE = 83, - anon_sym_PLUS = 84, - anon_sym_DASH = 85, - anon_sym_SLASH = 86, - anon_sym_PERCENT = 87, - anon_sym_STAR_STAR = 88, - anon_sym_LT_EQ = 89, - anon_sym_EQ_EQ = 90, - anon_sym_EQ_EQ_EQ = 91, - anon_sym_BANG_EQ = 92, - anon_sym_BANG_EQ_EQ = 93, - anon_sym_GT_EQ = 94, - anon_sym_QMARK_QMARK = 95, - anon_sym_instanceof = 96, - anon_sym_BANG = 97, - anon_sym_TILDE = 98, - anon_sym_typeof = 99, - anon_sym_void = 100, - anon_sym_delete = 101, - anon_sym_PLUS_PLUS = 102, - anon_sym_DASH_DASH = 103, - sym_unescaped_double_string_fragment = 104, - sym_unescaped_single_string_fragment = 105, - sym_escape_sequence = 106, - sym_comment = 107, - anon_sym_BQUOTE = 108, - anon_sym_DOLLAR_LBRACE = 109, - anon_sym_SLASH2 = 110, - sym_regex_pattern = 111, - sym_regex_flags = 112, - sym_number = 113, - sym_private_property_identifier = 114, - anon_sym_target = 115, - anon_sym_meta = 116, - sym_this = 117, - sym_super = 118, - sym_true = 119, - sym_false = 120, - sym_null = 121, - sym_undefined = 122, - anon_sym_AT = 123, - anon_sym_static = 124, - aux_sym_method_definition_token1 = 125, - anon_sym_get = 126, - anon_sym_set = 127, - sym__automatic_semicolon = 128, - sym__template_chars = 129, - sym__ternary_qmark = 130, - sym_html_comment = 131, - sym_jsx_text = 132, - sym_program = 133, - sym_export_statement = 134, - sym_namespace_export = 135, - sym_export_clause = 136, - sym_export_specifier = 137, - sym__module_export_name = 138, - sym_declaration = 139, - sym_import = 140, - sym_import_statement = 141, - sym_import_clause = 142, - sym__from_clause = 143, - sym_namespace_import = 144, - sym_named_imports = 145, - sym_import_specifier = 146, - sym_import_attribute = 147, - sym_statement = 148, - sym_expression_statement = 149, - sym_variable_declaration = 150, - sym_lexical_declaration = 151, - sym_variable_declarator = 152, - sym_statement_block = 153, - sym_else_clause = 154, - sym_if_statement = 155, - sym_switch_statement = 156, - sym_for_statement = 157, - sym_for_in_statement = 158, - sym__for_header = 159, - sym_while_statement = 160, - sym_do_statement = 161, - sym_try_statement = 162, - sym_with_statement = 163, - sym_break_statement = 164, - sym_continue_statement = 165, - sym_debugger_statement = 166, - sym_return_statement = 167, - sym_throw_statement = 168, - sym_empty_statement = 169, - sym_labeled_statement = 170, - sym_switch_body = 171, - sym_switch_case = 172, - sym_switch_default = 173, - sym_catch_clause = 174, - sym_finally_clause = 175, - sym_parenthesized_expression = 176, - sym_expression = 177, - sym_primary_expression = 178, - sym_yield_expression = 179, - sym_object = 180, - sym_object_pattern = 181, - sym_assignment_pattern = 182, - sym_object_assignment_pattern = 183, - sym_array = 184, - sym_array_pattern = 185, - sym_jsx_element = 186, - sym_jsx_expression = 187, - sym_jsx_opening_element = 188, - sym_nested_identifier = 189, - sym_jsx_namespace_name = 190, - sym_jsx_closing_element = 191, - sym_jsx_self_closing_element = 192, - sym_jsx_attribute = 193, - sym__jsx_string = 194, - sym_class = 195, - sym_class_declaration = 196, - sym_class_heritage = 197, - sym_function_expression = 198, - sym_function_declaration = 199, - sym_generator_function = 200, - sym_generator_function_declaration = 201, - sym_arrow_function = 202, - sym_call_expression = 203, - sym_new_expression = 204, - sym_await_expression = 205, - sym_member_expression = 206, - sym_subscript_expression = 207, - sym_assignment_expression = 208, - sym__augmented_assignment_lhs = 209, - sym_augmented_assignment_expression = 210, - sym__initializer = 211, - sym__destructuring_pattern = 212, - sym_spread_element = 213, - sym_ternary_expression = 214, - sym_binary_expression = 215, - sym_unary_expression = 216, - sym_update_expression = 217, - sym_sequence_expression = 218, - sym_string = 219, - sym_template_string = 220, - sym_template_substitution = 221, - sym_regex = 222, - sym_meta_property = 223, - sym_arguments = 224, - sym_decorator = 225, - sym_decorator_member_expression = 226, - sym_decorator_call_expression = 227, - sym_class_body = 228, - sym_field_definition = 229, - sym_formal_parameters = 230, - sym_class_static_block = 231, - sym_pattern = 232, - sym_rest_pattern = 233, - sym_method_definition = 234, - sym_pair = 235, - sym_pair_pattern = 236, - sym__property_name = 237, - sym_computed_property_name = 238, - aux_sym_program_repeat1 = 239, - aux_sym_export_statement_repeat1 = 240, - aux_sym_export_clause_repeat1 = 241, - aux_sym_named_imports_repeat1 = 242, - aux_sym_variable_declaration_repeat1 = 243, - aux_sym_switch_body_repeat1 = 244, - aux_sym_object_repeat1 = 245, - aux_sym_object_pattern_repeat1 = 246, - aux_sym_array_repeat1 = 247, - aux_sym_array_pattern_repeat1 = 248, - aux_sym_jsx_element_repeat1 = 249, - aux_sym_jsx_opening_element_repeat1 = 250, - aux_sym__jsx_string_repeat1 = 251, - aux_sym__jsx_string_repeat2 = 252, - aux_sym_sequence_expression_repeat1 = 253, - aux_sym_string_repeat1 = 254, - aux_sym_string_repeat2 = 255, - aux_sym_template_string_repeat1 = 256, - aux_sym_class_body_repeat1 = 257, - aux_sym_formal_parameters_repeat1 = 258, - alias_sym_property_identifier = 259, - alias_sym_shorthand_property_identifier = 260, - alias_sym_shorthand_property_identifier_pattern = 261, - alias_sym_statement_identifier = 262, + anon_sym_using = 16, + anon_sym_await = 17, + anon_sym_of = 18, + anon_sym_else = 19, + anon_sym_if = 20, + anon_sym_switch = 21, + anon_sym_for = 22, + anon_sym_LPAREN = 23, + anon_sym_SEMI = 24, + anon_sym_RPAREN = 25, + anon_sym_in = 26, + anon_sym_while = 27, + anon_sym_do = 28, + anon_sym_try = 29, + anon_sym_break = 30, + anon_sym_continue = 31, + anon_sym_debugger = 32, + anon_sym_return = 33, + anon_sym_throw = 34, + anon_sym_COLON = 35, + anon_sym_case = 36, + anon_sym_catch = 37, + anon_sym_finally = 38, + anon_sym_yield = 39, + anon_sym_EQ = 40, + anon_sym_LBRACK = 41, + anon_sym_RBRACK = 42, + sym_html_character_reference = 43, + anon_sym_LT = 44, + anon_sym_GT = 45, + sym_jsx_identifier = 46, + anon_sym_DOT = 47, + anon_sym_LT_SLASH = 48, + anon_sym_SLASH_GT = 49, + anon_sym_DQUOTE = 50, + anon_sym_SQUOTE = 51, + sym_unescaped_double_jsx_string_fragment = 52, + sym_unescaped_single_jsx_string_fragment = 53, + anon_sym_class = 54, + anon_sym_extends = 55, + anon_sym_async = 56, + anon_sym_function = 57, + anon_sym_EQ_GT = 58, + sym_optional_chain = 59, + anon_sym_new = 60, + anon_sym_PLUS_EQ = 61, + anon_sym_DASH_EQ = 62, + anon_sym_STAR_EQ = 63, + anon_sym_SLASH_EQ = 64, + anon_sym_PERCENT_EQ = 65, + anon_sym_CARET_EQ = 66, + anon_sym_AMP_EQ = 67, + anon_sym_PIPE_EQ = 68, + anon_sym_GT_GT_EQ = 69, + anon_sym_GT_GT_GT_EQ = 70, + anon_sym_LT_LT_EQ = 71, + anon_sym_STAR_STAR_EQ = 72, + anon_sym_AMP_AMP_EQ = 73, + anon_sym_PIPE_PIPE_EQ = 74, + anon_sym_QMARK_QMARK_EQ = 75, + anon_sym_DOT_DOT_DOT = 76, + anon_sym_AMP_AMP = 77, + anon_sym_PIPE_PIPE = 78, + anon_sym_GT_GT = 79, + anon_sym_GT_GT_GT = 80, + anon_sym_LT_LT = 81, + anon_sym_AMP = 82, + anon_sym_CARET = 83, + anon_sym_PIPE = 84, + anon_sym_PLUS = 85, + anon_sym_DASH = 86, + anon_sym_SLASH = 87, + anon_sym_PERCENT = 88, + anon_sym_STAR_STAR = 89, + anon_sym_LT_EQ = 90, + anon_sym_EQ_EQ = 91, + anon_sym_EQ_EQ_EQ = 92, + anon_sym_BANG_EQ = 93, + anon_sym_BANG_EQ_EQ = 94, + anon_sym_GT_EQ = 95, + anon_sym_QMARK_QMARK = 96, + anon_sym_instanceof = 97, + anon_sym_BANG = 98, + anon_sym_TILDE = 99, + anon_sym_typeof = 100, + anon_sym_void = 101, + anon_sym_delete = 102, + anon_sym_PLUS_PLUS = 103, + anon_sym_DASH_DASH = 104, + sym_unescaped_double_string_fragment = 105, + sym_unescaped_single_string_fragment = 106, + sym_escape_sequence = 107, + sym_comment = 108, + anon_sym_BQUOTE = 109, + anon_sym_DOLLAR_LBRACE = 110, + anon_sym_SLASH2 = 111, + sym_regex_pattern = 112, + sym_regex_flags = 113, + sym_number = 114, + sym_private_property_identifier = 115, + anon_sym_target = 116, + anon_sym_meta = 117, + sym_this = 118, + sym_super = 119, + sym_true = 120, + sym_false = 121, + sym_null = 122, + sym_undefined = 123, + anon_sym_AT = 124, + anon_sym_static = 125, + aux_sym_method_definition_token1 = 126, + anon_sym_get = 127, + anon_sym_set = 128, + sym__automatic_semicolon = 129, + sym__template_chars = 130, + sym__ternary_qmark = 131, + sym_html_comment = 132, + sym_jsx_text = 133, + sym_program = 134, + sym_export_statement = 135, + sym_namespace_export = 136, + sym_export_clause = 137, + sym_export_specifier = 138, + sym__module_export_name = 139, + sym_declaration = 140, + sym_import = 141, + sym_import_statement = 142, + sym_import_clause = 143, + sym__from_clause = 144, + sym_namespace_import = 145, + sym_named_imports = 146, + sym_import_specifier = 147, + sym_import_attribute = 148, + sym_statement = 149, + sym_expression_statement = 150, + sym_variable_declaration = 151, + sym_lexical_declaration = 152, + sym_using_declaration = 153, + sym_variable_declarator = 154, + sym_statement_block = 155, + sym_else_clause = 156, + sym_if_statement = 157, + sym_switch_statement = 158, + sym_for_statement = 159, + sym_for_in_statement = 160, + sym__for_header = 161, + sym_while_statement = 162, + sym_do_statement = 163, + sym_try_statement = 164, + sym_with_statement = 165, + sym_break_statement = 166, + sym_continue_statement = 167, + sym_debugger_statement = 168, + sym_return_statement = 169, + sym_throw_statement = 170, + sym_empty_statement = 171, + sym_labeled_statement = 172, + sym_switch_body = 173, + sym_switch_case = 174, + sym_switch_default = 175, + sym_catch_clause = 176, + sym_finally_clause = 177, + sym_parenthesized_expression = 178, + sym_expression = 179, + sym_primary_expression = 180, + sym_yield_expression = 181, + sym_object = 182, + sym_object_pattern = 183, + sym_assignment_pattern = 184, + sym_object_assignment_pattern = 185, + sym_array = 186, + sym_array_pattern = 187, + sym_jsx_element = 188, + sym_jsx_expression = 189, + sym_jsx_opening_element = 190, + sym_nested_identifier = 191, + sym_jsx_namespace_name = 192, + sym_jsx_closing_element = 193, + sym_jsx_self_closing_element = 194, + sym_jsx_attribute = 195, + sym__jsx_string = 196, + sym_class = 197, + sym_class_declaration = 198, + sym_class_heritage = 199, + sym_function_expression = 200, + sym_function_declaration = 201, + sym_generator_function = 202, + sym_generator_function_declaration = 203, + sym_arrow_function = 204, + sym_call_expression = 205, + sym_new_expression = 206, + sym_await_expression = 207, + sym_member_expression = 208, + sym_subscript_expression = 209, + sym_assignment_expression = 210, + sym__augmented_assignment_lhs = 211, + sym_augmented_assignment_expression = 212, + sym__initializer = 213, + sym__destructuring_pattern = 214, + sym_spread_element = 215, + sym_ternary_expression = 216, + sym_binary_expression = 217, + sym_unary_expression = 218, + sym_update_expression = 219, + sym_sequence_expression = 220, + sym_string = 221, + sym_template_string = 222, + sym_template_substitution = 223, + sym_regex = 224, + sym_meta_property = 225, + sym_arguments = 226, + sym_decorator = 227, + sym_decorator_member_expression = 228, + sym_decorator_call_expression = 229, + sym_class_body = 230, + sym_field_definition = 231, + sym_formal_parameters = 232, + sym_class_static_block = 233, + sym_pattern = 234, + sym_rest_pattern = 235, + sym_method_definition = 236, + sym_pair = 237, + sym_pair_pattern = 238, + sym__property_name = 239, + sym_computed_property_name = 240, + aux_sym_program_repeat1 = 241, + aux_sym_export_statement_repeat1 = 242, + aux_sym_export_clause_repeat1 = 243, + aux_sym_named_imports_repeat1 = 244, + aux_sym_variable_declaration_repeat1 = 245, + aux_sym_switch_body_repeat1 = 246, + aux_sym_object_repeat1 = 247, + aux_sym_object_pattern_repeat1 = 248, + aux_sym_array_repeat1 = 249, + aux_sym_array_pattern_repeat1 = 250, + aux_sym_jsx_element_repeat1 = 251, + aux_sym_jsx_opening_element_repeat1 = 252, + aux_sym__jsx_string_repeat1 = 253, + aux_sym__jsx_string_repeat2 = 254, + aux_sym_sequence_expression_repeat1 = 255, + aux_sym_string_repeat1 = 256, + aux_sym_string_repeat2 = 257, + aux_sym_template_string_repeat1 = 258, + aux_sym_class_body_repeat1 = 259, + aux_sym_formal_parameters_repeat1 = 260, + alias_sym_property_identifier = 261, + alias_sym_shorthand_property_identifier = 262, + alias_sym_shorthand_property_identifier_pattern = 263, + alias_sym_statement_identifier = 264, }; static const char * const ts_symbol_names[] = { @@ -297,6 +303,9 @@ static const char * const ts_symbol_names[] = { [anon_sym_var] = "var", [anon_sym_let] = "let", [anon_sym_const] = "const", + [anon_sym_using] = "using", + [anon_sym_await] = "await", + [anon_sym_of] = "of", [anon_sym_else] = "else", [anon_sym_if] = "if", [anon_sym_switch] = "switch", @@ -304,9 +313,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_LPAREN] = "(", [anon_sym_SEMI] = ";", [anon_sym_RPAREN] = ")", - [anon_sym_await] = "await", [anon_sym_in] = "in", - [anon_sym_of] = "of", [anon_sym_while] = "while", [anon_sym_do] = "do", [anon_sym_try] = "try", @@ -433,6 +440,7 @@ static const char * const ts_symbol_names[] = { [sym_expression_statement] = "expression_statement", [sym_variable_declaration] = "variable_declaration", [sym_lexical_declaration] = "lexical_declaration", + [sym_using_declaration] = "using_declaration", [sym_variable_declarator] = "variable_declarator", [sym_statement_block] = "statement_block", [sym_else_clause] = "else_clause", @@ -563,6 +571,9 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_var] = anon_sym_var, [anon_sym_let] = anon_sym_let, [anon_sym_const] = anon_sym_const, + [anon_sym_using] = anon_sym_using, + [anon_sym_await] = anon_sym_await, + [anon_sym_of] = anon_sym_of, [anon_sym_else] = anon_sym_else, [anon_sym_if] = anon_sym_if, [anon_sym_switch] = anon_sym_switch, @@ -570,9 +581,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LPAREN] = anon_sym_LPAREN, [anon_sym_SEMI] = anon_sym_SEMI, [anon_sym_RPAREN] = anon_sym_RPAREN, - [anon_sym_await] = anon_sym_await, [anon_sym_in] = anon_sym_in, - [anon_sym_of] = anon_sym_of, [anon_sym_while] = anon_sym_while, [anon_sym_do] = anon_sym_do, [anon_sym_try] = anon_sym_try, @@ -699,6 +708,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_expression_statement] = sym_expression_statement, [sym_variable_declaration] = sym_variable_declaration, [sym_lexical_declaration] = sym_lexical_declaration, + [sym_using_declaration] = sym_using_declaration, [sym_variable_declarator] = sym_variable_declarator, [sym_statement_block] = sym_statement_block, [sym_else_clause] = sym_else_clause, @@ -877,6 +887,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_using] = { + .visible = true, + .named = false, + }, + [anon_sym_await] = { + .visible = true, + .named = false, + }, + [anon_sym_of] = { + .visible = true, + .named = false, + }, [anon_sym_else] = { .visible = true, .named = false, @@ -905,18 +927,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_await] = { - .visible = true, - .named = false, - }, [anon_sym_in] = { .visible = true, .named = false, }, - [anon_sym_of] = { - .visible = true, - .named = false, - }, [anon_sym_while] = { .visible = true, .named = false, @@ -1423,6 +1437,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_using_declaration] = { + .visible = true, + .named = true, + }, [sym_variable_declarator] = { .visible = true, .named = true, @@ -1951,112 +1969,122 @@ static const char * const ts_field_names[] = { [field_value] = "value", }; -static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { +static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [2] = {.index = 0, .length = 1}, [3] = {.index = 1, .length = 1}, [5] = {.index = 2, .length = 1}, - [6] = {.index = 3, .length = 1}, - [7] = {.index = 4, .length = 1}, - [8] = {.index = 5, .length = 2}, - [9] = {.index = 7, .length = 2}, - [10] = {.index = 9, .length = 2}, - [11] = {.index = 11, .length = 2}, - [12] = {.index = 13, .length = 2}, - [13] = {.index = 15, .length = 1}, - [14] = {.index = 16, .length = 2}, - [15] = {.index = 18, .length = 2}, - [16] = {.index = 20, .length = 2}, - [20] = {.index = 22, .length = 1}, - [21] = {.index = 23, .length = 2}, - [22] = {.index = 25, .length = 2}, - [23] = {.index = 27, .length = 1}, - [24] = {.index = 28, .length = 2}, - [25] = {.index = 30, .length = 2}, - [26] = {.index = 32, .length = 6}, - [27] = {.index = 38, .length = 2}, - [28] = {.index = 40, .length = 2}, - [29] = {.index = 42, .length = 2}, - [30] = {.index = 44, .length = 1}, - [31] = {.index = 45, .length = 1}, - [32] = {.index = 46, .length = 1}, - [33] = {.index = 47, .length = 1}, - [34] = {.index = 48, .length = 1}, - [35] = {.index = 49, .length = 2}, - [36] = {.index = 51, .length = 1}, - [37] = {.index = 52, .length = 2}, - [38] = {.index = 54, .length = 2}, - [39] = {.index = 56, .length = 1}, - [40] = {.index = 18, .length = 2}, - [41] = {.index = 20, .length = 2}, - [42] = {.index = 57, .length = 3}, - [43] = {.index = 60, .length = 2}, - [44] = {.index = 60, .length = 2}, - [45] = {.index = 62, .length = 3}, - [46] = {.index = 62, .length = 3}, - [47] = {.index = 65, .length = 3}, - [48] = {.index = 68, .length = 2}, - [49] = {.index = 70, .length = 2}, - [50] = {.index = 72, .length = 2}, - [51] = {.index = 74, .length = 2}, - [52] = {.index = 76, .length = 1}, - [53] = {.index = 77, .length = 1}, - [54] = {.index = 18, .length = 2}, - [55] = {.index = 78, .length = 2}, - [56] = {.index = 80, .length = 3}, - [57] = {.index = 83, .length = 1}, - [58] = {.index = 84, .length = 3}, - [59] = {.index = 87, .length = 6}, - [60] = {.index = 93, .length = 2}, - [61] = {.index = 95, .length = 3}, - [62] = {.index = 98, .length = 2}, - [63] = {.index = 100, .length = 2}, - [64] = {.index = 102, .length = 1}, - [65] = {.index = 103, .length = 2}, - [66] = {.index = 105, .length = 2}, - [67] = {.index = 107, .length = 1}, - [68] = {.index = 108, .length = 2}, - [69] = {.index = 110, .length = 2}, - [70] = {.index = 112, .length = 2}, - [71] = {.index = 114, .length = 2}, + [6] = {.index = 2, .length = 1}, + [7] = {.index = 3, .length = 1}, + [8] = {.index = 4, .length = 1}, + [9] = {.index = 5, .length = 2}, + [10] = {.index = 7, .length = 2}, + [11] = {.index = 9, .length = 2}, + [12] = {.index = 11, .length = 2}, + [13] = {.index = 13, .length = 2}, + [14] = {.index = 15, .length = 1}, + [15] = {.index = 16, .length = 2}, + [16] = {.index = 18, .length = 2}, + [17] = {.index = 20, .length = 2}, + [21] = {.index = 22, .length = 1}, + [22] = {.index = 23, .length = 2}, + [23] = {.index = 25, .length = 2}, + [24] = {.index = 25, .length = 2}, + [25] = {.index = 27, .length = 1}, + [26] = {.index = 28, .length = 2}, + [27] = {.index = 30, .length = 2}, + [28] = {.index = 32, .length = 6}, + [29] = {.index = 38, .length = 2}, + [30] = {.index = 40, .length = 2}, + [31] = {.index = 42, .length = 2}, + [32] = {.index = 44, .length = 1}, + [33] = {.index = 45, .length = 1}, + [34] = {.index = 46, .length = 1}, + [35] = {.index = 47, .length = 1}, + [36] = {.index = 48, .length = 1}, + [37] = {.index = 49, .length = 2}, + [38] = {.index = 51, .length = 1}, + [39] = {.index = 52, .length = 2}, + [40] = {.index = 54, .length = 2}, + [41] = {.index = 56, .length = 1}, + [42] = {.index = 18, .length = 2}, + [43] = {.index = 20, .length = 2}, + [44] = {.index = 57, .length = 3}, + [45] = {.index = 60, .length = 2}, + [46] = {.index = 60, .length = 2}, + [47] = {.index = 62, .length = 3}, + [48] = {.index = 62, .length = 3}, + [49] = {.index = 65, .length = 3}, + [50] = {.index = 68, .length = 2}, + [51] = {.index = 70, .length = 2}, + [52] = {.index = 72, .length = 2}, + [53] = {.index = 74, .length = 2}, + [54] = {.index = 76, .length = 1}, + [55] = {.index = 77, .length = 1}, + [56] = {.index = 18, .length = 2}, + [57] = {.index = 78, .length = 2}, + [58] = {.index = 80, .length = 3}, + [59] = {.index = 83, .length = 1}, + [60] = {.index = 84, .length = 2}, + [61] = {.index = 86, .length = 3}, + [62] = {.index = 89, .length = 6}, + [63] = {.index = 95, .length = 2}, + [64] = {.index = 97, .length = 3}, + [65] = {.index = 100, .length = 2}, + [66] = {.index = 102, .length = 2}, + [67] = {.index = 104, .length = 1}, + [68] = {.index = 105, .length = 2}, + [69] = {.index = 107, .length = 2}, + [70] = {.index = 109, .length = 1}, + [71] = {.index = 110, .length = 2}, [72] = {.index = 112, .length = 2}, - [73] = {.index = 116, .length = 2}, - [74] = {.index = 118, .length = 3}, - [75] = {.index = 121, .length = 2}, - [76] = {.index = 123, .length = 2}, - [77] = {.index = 125, .length = 2}, - [78] = {.index = 127, .length = 3}, - [79] = {.index = 130, .length = 2}, - [80] = {.index = 132, .length = 2}, - [81] = {.index = 134, .length = 4}, - [82] = {.index = 138, .length = 2}, - [83] = {.index = 140, .length = 2}, - [84] = {.index = 142, .length = 3}, - [85] = {.index = 145, .length = 2}, - [86] = {.index = 147, .length = 3}, - [87] = {.index = 150, .length = 3}, - [88] = {.index = 153, .length = 3}, - [89] = {.index = 156, .length = 2}, - [90] = {.index = 158, .length = 3}, - [91] = {.index = 161, .length = 4}, - [92] = {.index = 165, .length = 3}, - [93] = {.index = 165, .length = 3}, - [94] = {.index = 168, .length = 3}, - [95] = {.index = 171, .length = 3}, - [96] = {.index = 174, .length = 3}, - [97] = {.index = 177, .length = 4}, - [98] = {.index = 181, .length = 2}, - [99] = {.index = 183, .length = 4}, - [100] = {.index = 187, .length = 4}, - [101] = {.index = 191, .length = 4}, - [102] = {.index = 195, .length = 3}, - [103] = {.index = 198, .length = 2}, - [104] = {.index = 200, .length = 4}, - [105] = {.index = 204, .length = 5}, - [106] = {.index = 209, .length = 4}, - [107] = {.index = 213, .length = 5}, - [108] = {.index = 218, .length = 4}, - [109] = {.index = 222, .length = 4}, - [110] = {.index = 226, .length = 5}, + [73] = {.index = 114, .length = 2}, + [74] = {.index = 116, .length = 2}, + [75] = {.index = 114, .length = 2}, + [76] = {.index = 118, .length = 2}, + [77] = {.index = 120, .length = 3}, + [78] = {.index = 123, .length = 2}, + [79] = {.index = 125, .length = 2}, + [80] = {.index = 127, .length = 2}, + [81] = {.index = 129, .length = 3}, + [82] = {.index = 132, .length = 2}, + [83] = {.index = 134, .length = 2}, + [84] = {.index = 136, .length = 4}, + [85] = {.index = 140, .length = 2}, + [86] = {.index = 142, .length = 2}, + [87] = {.index = 144, .length = 3}, + [88] = {.index = 147, .length = 2}, + [89] = {.index = 149, .length = 3}, + [90] = {.index = 152, .length = 3}, + [91] = {.index = 155, .length = 3}, + [92] = {.index = 158, .length = 2}, + [93] = {.index = 160, .length = 3}, + [94] = {.index = 163, .length = 4}, + [95] = {.index = 167, .length = 3}, + [96] = {.index = 167, .length = 3}, + [97] = {.index = 170, .length = 3}, + [98] = {.index = 173, .length = 3}, + [99] = {.index = 176, .length = 3}, + [100] = {.index = 179, .length = 4}, + [101] = {.index = 183, .length = 2}, + [102] = {.index = 185, .length = 4}, + [103] = {.index = 185, .length = 4}, + [104] = {.index = 189, .length = 4}, + [105] = {.index = 193, .length = 4}, + [106] = {.index = 197, .length = 3}, + [107] = {.index = 200, .length = 2}, + [108] = {.index = 202, .length = 4}, + [109] = {.index = 206, .length = 5}, + [110] = {.index = 206, .length = 5}, + [111] = {.index = 211, .length = 4}, + [112] = {.index = 211, .length = 4}, + [113] = {.index = 215, .length = 5}, + [114] = {.index = 215, .length = 5}, + [115] = {.index = 220, .length = 5}, + [116] = {.index = 225, .length = 4}, + [117] = {.index = 229, .length = 4}, + [118] = {.index = 233, .length = 5}, + [119] = {.index = 233, .length = 5}, + [120] = {.index = 238, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2192,198 +2220,213 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [83] = {field_value, 1}, [84] = + {field_kind, 0}, + {field_kind, 1}, + [86] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [87] = + [89] = {field_body, 3}, {field_kind, 2, .inherited = true}, {field_left, 2, .inherited = true}, {field_operator, 2, .inherited = true}, {field_right, 2, .inherited = true}, {field_value, 2, .inherited = true}, - [93] = + [95] = {field_body, 1}, {field_condition, 3}, - [95] = + [97] = {field_body, 1}, {field_finalizer, 3}, {field_handler, 2}, - [98] = + [100] = {field_attribute, 2, .inherited = true}, {field_name, 1}, - [100] = + [102] = {field_attribute, 0, .inherited = true}, {field_attribute, 1, .inherited = true}, - [102] = + [104] = {field_property, 1}, - [103] = + [105] = {field_property, 0}, {field_value, 1, .inherited = true}, - [105] = + [107] = {field_decorator, 0, .inherited = true}, {field_property, 1}, - [107] = + [109] = {field_member, 1, .inherited = true}, - [108] = + [110] = {field_member, 0, .inherited = true}, {field_member, 1, .inherited = true}, - [110] = + [112] = {field_body, 3}, {field_name, 1}, - [112] = + [114] = {field_body, 3}, {field_parameter, 1}, - [114] = + [116] = {field_body, 3}, {field_parameters, 2}, - [116] = + [118] = {field_body, 3}, {field_parameters, 1}, - [118] = + [120] = {field_body, 3}, {field_name, 1}, {field_parameters, 2}, - [121] = + [123] = {field_flags, 3}, {field_pattern, 1}, - [123] = + [125] = {field_index, 2}, {field_object, 0}, - [125] = + [127] = {field_declaration, 3}, {field_decorator, 0, .inherited = true}, - [127] = + [129] = {field_body, 3}, {field_decorator, 0, .inherited = true}, {field_name, 2}, - [130] = + [132] = {field_body, 3}, {field_decorator, 0, .inherited = true}, - [132] = + [134] = {field_alias, 2}, {field_name, 0}, - [134] = + [136] = {field_body, 3}, {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_parameters, 2}, - [138] = + [140] = {field_property, 1}, {field_value, 2, .inherited = true}, - [140] = + [142] = {field_decorator, 0, .inherited = true}, {field_property, 2}, - [142] = + [144] = {field_decorator, 0, .inherited = true}, {field_property, 1}, {field_value, 2, .inherited = true}, - [145] = + [147] = {field_body, 4}, {field_parameters, 3}, - [147] = + [149] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, - [150] = + [152] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [153] = + [155] = {field_index, 3}, {field_object, 0}, {field_optional_chain, 1}, - [156] = + [158] = {field_decorator, 0, .inherited = true}, {field_value, 3}, - [158] = + [160] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 2}, - [161] = + [163] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_parameters, 3}, - [165] = + [167] = {field_left, 1}, {field_operator, 2}, {field_right, 3}, - [168] = + [170] = {field_body, 5}, {field_condition, 3}, {field_initializer, 2}, - [171] = + [173] = {field_decorator, 0, .inherited = true}, {field_property, 2}, {field_value, 3, .inherited = true}, - [174] = + [176] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, - [177] = + [179] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_parameters, 4}, - [181] = + [183] = {field_body, 3}, {field_value, 1}, - [183] = + [185] = {field_kind, 1}, {field_left, 2}, {field_operator, 3}, {field_right, 4}, - [187] = + [189] = {field_body, 6}, {field_condition, 3}, {field_increment, 4}, {field_initializer, 2}, - [191] = + [193] = {field_body, 6}, {field_condition, 3}, {field_condition, 4}, {field_initializer, 2}, - [195] = + [197] = {field_body, 6}, {field_condition, 4}, {field_initializer, 2}, - [198] = + [200] = {field_body, 4}, {field_parameter, 2}, - [200] = + [202] = {field_body, 6}, {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_parameters, 5}, - [204] = + [206] = {field_kind, 1}, {field_left, 2}, {field_operator, 4}, {field_right, 5}, {field_value, 3, .inherited = true}, - [209] = + [211] = {field_kind, 1}, {field_left, 2}, {field_operator, 4}, {field_right, 5}, - [213] = + [215] = + {field_kind, 1}, + {field_kind, 2}, + {field_left, 3}, + {field_operator, 4}, + {field_right, 5}, + [220] = {field_body, 7}, {field_condition, 3}, {field_condition, 4}, {field_increment, 5}, {field_initializer, 2}, - [218] = + [225] = {field_body, 7}, {field_condition, 4}, {field_increment, 5}, {field_initializer, 2}, - [222] = + [229] = {field_body, 7}, {field_condition, 4}, {field_condition, 5}, {field_initializer, 2}, - [226] = + [233] = + {field_kind, 1}, + {field_kind, 2}, + {field_left, 3}, + {field_operator, 5}, + {field_right, 6}, + [238] = {field_body, 8}, {field_condition, 4}, {field_condition, 5}, @@ -2399,42 +2442,63 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [4] = { [0] = alias_sym_property_identifier, }, - [14] = { - [0] = alias_sym_statement_identifier, + [5] = { + [0] = sym_identifier, }, [15] = { - [0] = sym_identifier, + [0] = alias_sym_statement_identifier, }, [16] = { [0] = sym_identifier, }, [17] = { - [1] = alias_sym_shorthand_property_identifier, + [0] = sym_identifier, }, [18] = { - [1] = alias_sym_shorthand_property_identifier_pattern, + [1] = alias_sym_shorthand_property_identifier, }, [19] = { + [1] = alias_sym_shorthand_property_identifier_pattern, + }, + [20] = { [1] = sym_identifier, }, - [30] = { + [23] = { + [0] = sym_identifier, + }, + [32] = { [1] = alias_sym_statement_identifier, }, - [43] = { + [45] = { [2] = alias_sym_property_identifier, }, - [45] = { + [47] = { [2] = alias_sym_property_identifier, }, - [54] = { + [56] = { [0] = alias_sym_shorthand_property_identifier_pattern, }, - [70] = { + [73] = { [1] = sym_identifier, }, - [92] = { + [95] = { [1] = sym_identifier, }, + [102] = { + [2] = sym_identifier, + }, + [109] = { + [2] = sym_identifier, + }, + [111] = { + [2] = sym_identifier, + }, + [113] = { + [3] = sym_identifier, + }, + [118] = { + [3] = sym_identifier, + }, }; static const uint16_t ts_non_terminal_alias_map[] = { @@ -2450,416 +2514,416 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5] = 2, [6] = 2, [7] = 7, - [8] = 8, + [8] = 7, [9] = 9, - [10] = 10, + [10] = 7, [11] = 11, [12] = 12, [13] = 13, - [14] = 12, + [14] = 14, [15] = 15, - [16] = 12, - [17] = 15, + [16] = 15, + [17] = 17, [18] = 18, - [19] = 15, + [19] = 19, [20] = 20, - [21] = 12, - [22] = 15, - [23] = 15, - [24] = 12, - [25] = 25, - [26] = 26, - [27] = 27, - [28] = 28, + [21] = 21, + [22] = 18, + [23] = 19, + [24] = 18, + [25] = 19, + [26] = 18, + [27] = 19, + [28] = 19, [29] = 29, - [30] = 30, - [31] = 30, + [30] = 18, + [31] = 29, [32] = 32, - [33] = 27, - [34] = 28, - [35] = 25, + [33] = 15, + [34] = 34, + [35] = 15, [36] = 36, - [37] = 37, - [38] = 29, - [39] = 39, - [40] = 37, + [37] = 15, + [38] = 36, + [39] = 15, + [40] = 40, [41] = 41, [42] = 42, [43] = 43, [44] = 44, - [45] = 26, - [46] = 39, + [45] = 45, + [46] = 46, [47] = 47, [48] = 48, - [49] = 41, - [50] = 32, - [51] = 42, - [52] = 36, - [53] = 43, - [54] = 44, - [55] = 48, + [49] = 49, + [50] = 50, + [51] = 32, + [52] = 52, + [53] = 53, + [54] = 54, + [55] = 55, [56] = 56, - [57] = 56, - [58] = 56, - [59] = 56, - [60] = 56, - [61] = 61, - [62] = 62, - [63] = 63, - [64] = 64, - [65] = 65, - [66] = 66, - [67] = 67, - [68] = 68, - [69] = 69, - [70] = 70, - [71] = 71, + [57] = 40, + [58] = 53, + [59] = 42, + [60] = 43, + [61] = 44, + [62] = 45, + [63] = 46, + [64] = 47, + [65] = 48, + [66] = 49, + [67] = 50, + [68] = 52, + [69] = 55, + [70] = 56, + [71] = 54, [72] = 72, - [73] = 73, - [74] = 74, - [75] = 75, - [76] = 76, - [77] = 77, - [78] = 76, - [79] = 76, - [80] = 76, - [81] = 76, - [82] = 76, - [83] = 83, - [84] = 84, - [85] = 84, - [86] = 83, + [73] = 34, + [74] = 36, + [75] = 15, + [76] = 15, + [77] = 15, + [78] = 15, + [79] = 15, + [80] = 80, + [81] = 80, + [82] = 80, + [83] = 80, + [84] = 80, + [85] = 80, + [86] = 86, [87] = 87, - [88] = 87, + [88] = 88, [89] = 89, [90] = 90, [91] = 91, - [92] = 89, + [92] = 92, [93] = 93, - [94] = 93, + [94] = 94, [95] = 95, [96] = 96, [97] = 97, [98] = 98, - [99] = 96, + [99] = 99, [100] = 100, - [101] = 96, + [101] = 101, [102] = 102, - [103] = 103, - [104] = 104, - [105] = 104, - [106] = 106, + [103] = 102, + [104] = 101, + [105] = 105, + [106] = 105, [107] = 107, - [108] = 108, - [109] = 109, - [110] = 110, - [111] = 110, - [112] = 108, + [108] = 105, + [109] = 105, + [110] = 105, + [111] = 105, + [112] = 112, [113] = 113, - [114] = 114, + [114] = 112, [115] = 115, - [116] = 115, + [116] = 116, [117] = 117, - [118] = 118, - [119] = 118, - [120] = 113, - [121] = 117, + [118] = 115, + [119] = 119, + [120] = 119, + [121] = 121, [122] = 122, - [123] = 123, + [123] = 122, [124] = 124, - [125] = 125, + [125] = 122, [126] = 126, [127] = 127, - [128] = 122, - [129] = 122, + [128] = 128, + [129] = 129, [130] = 130, - [131] = 131, + [131] = 129, [132] = 132, [133] = 133, - [134] = 132, + [134] = 133, [135] = 135, - [136] = 131, - [137] = 137, - [138] = 132, - [139] = 139, + [136] = 136, + [137] = 133, + [138] = 138, + [139] = 138, [140] = 140, [141] = 141, - [142] = 125, - [143] = 131, - [144] = 123, - [145] = 126, - [146] = 127, - [147] = 127, - [148] = 148, - [149] = 124, - [150] = 140, - [151] = 125, - [152] = 126, - [153] = 127, + [142] = 142, + [143] = 141, + [144] = 144, + [145] = 145, + [146] = 146, + [147] = 144, + [148] = 145, + [149] = 146, + [150] = 150, + [151] = 150, + [152] = 152, + [153] = 152, [154] = 154, [155] = 155, - [156] = 122, - [157] = 155, - [158] = 148, - [159] = 123, - [160] = 124, - [161] = 125, - [162] = 131, + [156] = 156, + [157] = 157, + [158] = 158, + [159] = 159, + [160] = 160, + [161] = 161, + [162] = 162, [163] = 163, - [164] = 124, - [165] = 165, - [166] = 123, - [167] = 124, - [168] = 125, - [169] = 126, - [170] = 127, - [171] = 122, - [172] = 131, - [173] = 126, - [174] = 123, + [164] = 159, + [165] = 157, + [166] = 166, + [167] = 167, + [168] = 168, + [169] = 167, + [170] = 170, + [171] = 171, + [172] = 166, + [173] = 168, + [174] = 174, [175] = 175, - [176] = 176, - [177] = 177, + [176] = 159, + [177] = 152, [178] = 178, - [179] = 179, - [180] = 180, + [179] = 154, + [180] = 168, [181] = 181, - [182] = 182, + [182] = 167, [183] = 183, - [184] = 176, - [185] = 185, - [186] = 186, - [187] = 187, - [188] = 188, - [189] = 189, + [184] = 175, + [185] = 152, + [186] = 154, + [187] = 161, + [188] = 154, + [189] = 181, [190] = 190, [191] = 191, - [192] = 192, + [192] = 157, [193] = 193, - [194] = 194, - [195] = 195, - [196] = 196, - [197] = 197, - [198] = 198, - [199] = 179, - [200] = 181, + [194] = 159, + [195] = 178, + [196] = 168, + [197] = 167, + [198] = 175, + [199] = 152, + [200] = 154, [201] = 201, - [202] = 175, - [203] = 182, - [204] = 183, - [205] = 185, - [206] = 186, - [207] = 187, - [208] = 188, - [209] = 189, - [210] = 190, - [211] = 191, - [212] = 192, - [213] = 193, - [214] = 194, - [215] = 195, - [216] = 196, - [217] = 198, + [202] = 202, + [203] = 159, + [204] = 168, + [205] = 167, + [206] = 175, + [207] = 152, + [208] = 154, + [209] = 159, + [210] = 157, + [211] = 211, + [212] = 168, + [213] = 157, + [214] = 167, + [215] = 175, + [216] = 157, + [217] = 175, [218] = 218, [219] = 219, [220] = 220, - [221] = 178, + [221] = 221, [222] = 222, [223] = 223, - [224] = 224, - [225] = 219, - [226] = 219, - [227] = 222, + [224] = 220, + [225] = 225, + [226] = 226, + [227] = 227, [228] = 228, - [229] = 179, - [230] = 181, - [231] = 201, - [232] = 182, - [233] = 183, - [234] = 185, - [235] = 187, - [236] = 188, - [237] = 189, - [238] = 190, - [239] = 191, - [240] = 192, - [241] = 193, - [242] = 194, - [243] = 195, - [244] = 196, - [245] = 198, - [246] = 178, - [247] = 222, - [248] = 248, - [249] = 249, - [250] = 181, - [251] = 201, - [252] = 175, - [253] = 182, - [254] = 183, - [255] = 176, - [256] = 185, - [257] = 187, - [258] = 188, - [259] = 189, - [260] = 190, - [261] = 191, - [262] = 192, - [263] = 193, - [264] = 194, - [265] = 195, - [266] = 196, - [267] = 198, - [268] = 220, + [229] = 229, + [230] = 230, + [231] = 231, + [232] = 232, + [233] = 233, + [234] = 234, + [235] = 235, + [236] = 236, + [237] = 237, + [238] = 238, + [239] = 239, + [240] = 240, + [241] = 241, + [242] = 242, + [243] = 243, + [244] = 220, + [245] = 229, + [246] = 225, + [247] = 247, + [248] = 228, + [249] = 231, + [250] = 219, + [251] = 233, + [252] = 234, + [253] = 235, + [254] = 236, + [255] = 237, + [256] = 238, + [257] = 239, + [258] = 240, + [259] = 241, + [260] = 242, + [261] = 243, + [262] = 247, + [263] = 263, + [264] = 263, + [265] = 265, + [266] = 266, + [267] = 226, + [268] = 268, [269] = 269, [270] = 270, - [271] = 178, - [272] = 176, - [273] = 222, - [274] = 179, - [275] = 201, - [276] = 179, - [277] = 181, - [278] = 201, - [279] = 175, - [280] = 182, - [281] = 183, - [282] = 185, - [283] = 187, - [284] = 188, - [285] = 189, - [286] = 190, - [287] = 191, - [288] = 192, - [289] = 193, - [290] = 194, - [291] = 195, - [292] = 196, - [293] = 198, - [294] = 178, - [295] = 222, - [296] = 176, - [297] = 175, - [298] = 298, - [299] = 299, - [300] = 298, - [301] = 298, - [302] = 299, - [303] = 303, - [304] = 303, - [305] = 305, - [306] = 305, - [307] = 305, - [308] = 303, - [309] = 309, - [310] = 309, - [311] = 63, - [312] = 64, - [313] = 313, - [314] = 313, - [315] = 313, - [316] = 316, - [317] = 317, - [318] = 309, - [319] = 316, - [320] = 309, - [321] = 309, - [322] = 317, - [323] = 309, - [324] = 324, - [325] = 325, - [326] = 61, - [327] = 65, - [328] = 328, - [329] = 325, - [330] = 316, - [331] = 309, - [332] = 332, - [333] = 333, - [334] = 332, - [335] = 64, - [336] = 63, - [337] = 61, - [338] = 338, - [339] = 339, - [340] = 65, - [341] = 341, - [342] = 342, - [343] = 343, - [344] = 328, - [345] = 345, - [346] = 346, - [347] = 347, - [348] = 66, - [349] = 349, - [350] = 350, - [351] = 351, - [352] = 343, - [353] = 353, - [354] = 354, - [355] = 67, - [356] = 309, - [357] = 309, - [358] = 358, - [359] = 359, + [271] = 271, + [272] = 266, + [273] = 266, + [274] = 220, + [275] = 229, + [276] = 225, + [277] = 232, + [278] = 231, + [279] = 219, + [280] = 233, + [281] = 235, + [282] = 236, + [283] = 237, + [284] = 238, + [285] = 239, + [286] = 240, + [287] = 241, + [288] = 242, + [289] = 243, + [290] = 247, + [291] = 263, + [292] = 226, + [293] = 293, + [294] = 229, + [295] = 225, + [296] = 228, + [297] = 231, + [298] = 219, + [299] = 232, + [300] = 233, + [301] = 235, + [302] = 236, + [303] = 237, + [304] = 238, + [305] = 239, + [306] = 240, + [307] = 241, + [308] = 242, + [309] = 243, + [310] = 247, + [311] = 263, + [312] = 269, + [313] = 226, + [314] = 314, + [315] = 220, + [316] = 229, + [317] = 225, + [318] = 228, + [319] = 231, + [320] = 219, + [321] = 233, + [322] = 235, + [323] = 236, + [324] = 237, + [325] = 238, + [326] = 239, + [327] = 240, + [328] = 241, + [329] = 242, + [330] = 243, + [331] = 247, + [332] = 263, + [333] = 226, + [334] = 232, + [335] = 220, + [336] = 229, + [337] = 225, + [338] = 228, + [339] = 231, + [340] = 219, + [341] = 233, + [342] = 235, + [343] = 236, + [344] = 237, + [345] = 238, + [346] = 239, + [347] = 240, + [348] = 241, + [349] = 242, + [350] = 243, + [351] = 247, + [352] = 263, + [353] = 226, + [354] = 232, + [355] = 232, + [356] = 228, + [357] = 357, + [358] = 357, + [359] = 357, [360] = 360, [361] = 361, - [362] = 362, - [363] = 363, - [364] = 364, - [365] = 365, + [362] = 360, + [363] = 361, + [364] = 361, + [365] = 360, [366] = 366, - [367] = 367, + [367] = 366, [368] = 368, - [369] = 369, - [370] = 370, + [369] = 88, + [370] = 368, [371] = 371, - [372] = 372, - [373] = 373, - [374] = 374, - [375] = 375, - [376] = 376, - [377] = 377, + [372] = 366, + [373] = 366, + [374] = 91, + [375] = 366, + [376] = 371, + [377] = 366, [378] = 378, - [379] = 379, - [380] = 380, + [379] = 378, + [380] = 368, [381] = 381, [382] = 382, [383] = 383, - [384] = 384, - [385] = 385, - [386] = 386, - [387] = 387, + [384] = 89, + [385] = 87, + [386] = 382, + [387] = 378, [388] = 388, [389] = 389, - [390] = 390, - [391] = 391, + [390] = 388, + [391] = 87, [392] = 392, - [393] = 393, - [394] = 394, + [393] = 366, + [394] = 91, [395] = 395, [396] = 396, - [397] = 397, + [397] = 396, [398] = 398, - [399] = 399, - [400] = 400, + [399] = 90, + [400] = 89, [401] = 401, - [402] = 402, + [402] = 86, [403] = 403, [404] = 404, [405] = 405, - [406] = 406, + [406] = 366, [407] = 407, [408] = 408, [409] = 409, - [410] = 410, + [410] = 366, [411] = 411, - [412] = 412, + [412] = 366, [413] = 413, - [414] = 414, + [414] = 366, [415] = 415, - [416] = 416, - [417] = 417, + [416] = 88, + [417] = 383, [418] = 418, [419] = 419, [420] = 420, @@ -2875,82 +2939,82 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [430] = 430, [431] = 431, [432] = 432, - [433] = 359, - [434] = 432, + [433] = 433, + [434] = 434, [435] = 435, [436] = 436, - [437] = 432, + [437] = 437, [438] = 438, - [439] = 438, + [439] = 439, [440] = 440, - [441] = 440, + [441] = 441, [442] = 442, - [443] = 430, + [443] = 443, [444] = 444, - [445] = 429, - [446] = 436, - [447] = 438, + [445] = 445, + [446] = 446, + [447] = 447, [448] = 448, - [449] = 440, - [450] = 427, - [451] = 438, + [449] = 449, + [450] = 450, + [451] = 451, [452] = 452, [453] = 453, - [454] = 440, + [454] = 454, [455] = 455, - [456] = 452, - [457] = 435, - [458] = 440, + [456] = 456, + [457] = 457, + [458] = 458, [459] = 459, - [460] = 438, - [461] = 430, + [460] = 460, + [461] = 461, [462] = 462, [463] = 463, [464] = 464, [465] = 465, - [466] = 455, + [466] = 466, [467] = 467, - [468] = 464, + [468] = 468, [469] = 469, - [470] = 438, - [471] = 440, + [470] = 470, + [471] = 471, [472] = 472, [473] = 473, - [474] = 359, - [475] = 431, - [476] = 359, - [477] = 428, - [478] = 453, - [479] = 469, + [474] = 474, + [475] = 475, + [476] = 476, + [477] = 477, + [478] = 478, + [479] = 479, [480] = 480, - [481] = 430, - [482] = 467, + [481] = 481, + [482] = 482, [483] = 483, [484] = 484, [485] = 485, - [486] = 483, - [487] = 430, - [488] = 455, + [486] = 486, + [487] = 487, + [488] = 488, [489] = 489, - [490] = 440, - [491] = 438, - [492] = 464, - [493] = 485, - [494] = 480, - [495] = 440, - [496] = 438, - [497] = 484, - [498] = 483, - [499] = 438, - [500] = 440, - [501] = 489, - [502] = 430, - [503] = 503, - [504] = 504, - [505] = 62, - [506] = 63, - [507] = 507, - [508] = 64, + [490] = 490, + [491] = 404, + [492] = 490, + [493] = 493, + [494] = 494, + [495] = 495, + [496] = 496, + [497] = 497, + [498] = 498, + [499] = 490, + [500] = 500, + [501] = 501, + [502] = 502, + [503] = 501, + [504] = 502, + [505] = 505, + [506] = 506, + [507] = 498, + [508] = 508, [509] = 509, [510] = 510, [511] = 511, @@ -2966,69 +3030,69 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [521] = 521, [522] = 522, [523] = 523, - [524] = 524, + [524] = 404, [525] = 525, - [526] = 526, - [527] = 527, - [528] = 528, - [529] = 529, - [530] = 530, + [526] = 497, + [527] = 501, + [528] = 498, + [529] = 501, + [530] = 502, [531] = 531, [532] = 532, [533] = 533, - [534] = 534, + [534] = 500, [535] = 535, - [536] = 536, - [537] = 537, - [538] = 66, + [536] = 533, + [537] = 502, + [538] = 404, [539] = 539, [540] = 540, - [541] = 541, - [542] = 542, - [543] = 543, - [544] = 544, - [545] = 545, - [546] = 546, - [547] = 547, - [548] = 548, - [549] = 549, - [550] = 550, - [551] = 551, - [552] = 552, + [541] = 531, + [542] = 535, + [543] = 501, + [544] = 502, + [545] = 494, + [546] = 502, + [547] = 495, + [548] = 496, + [549] = 532, + [550] = 501, + [551] = 493, + [552] = 498, [553] = 553, - [554] = 554, + [554] = 540, [555] = 555, [556] = 556, - [557] = 67, - [558] = 558, - [559] = 559, - [560] = 560, - [561] = 561, - [562] = 562, - [563] = 563, + [557] = 557, + [558] = 557, + [559] = 539, + [560] = 498, + [561] = 532, + [562] = 556, + [563] = 533, [564] = 564, - [565] = 565, - [566] = 566, - [567] = 567, - [568] = 568, - [569] = 569, - [570] = 61, - [571] = 571, - [572] = 65, - [573] = 573, - [574] = 574, - [575] = 575, - [576] = 576, - [577] = 511, - [578] = 578, - [579] = 503, - [580] = 580, + [565] = 502, + [566] = 501, + [567] = 502, + [568] = 501, + [569] = 502, + [570] = 501, + [571] = 502, + [572] = 557, + [573] = 502, + [574] = 553, + [575] = 555, + [576] = 501, + [577] = 501, + [578] = 498, + [579] = 498, + [580] = 564, [581] = 581, - [582] = 582, + [582] = 92, [583] = 583, - [584] = 504, + [584] = 91, [585] = 585, - [586] = 586, + [586] = 88, [587] = 587, [588] = 588, [589] = 589, @@ -3036,504 +3100,504 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [591] = 591, [592] = 592, [593] = 593, - [594] = 594, + [594] = 90, [595] = 595, [596] = 596, - [597] = 525, + [597] = 597, [598] = 598, - [599] = 533, + [599] = 599, [600] = 600, - [601] = 542, + [601] = 601, [602] = 602, [603] = 603, - [604] = 62, - [605] = 62, - [606] = 525, + [604] = 604, + [605] = 605, + [606] = 606, [607] = 607, - [608] = 569, - [609] = 510, - [610] = 533, - [611] = 507, - [612] = 511, - [613] = 542, - [614] = 509, - [615] = 512, - [616] = 571, - [617] = 513, - [618] = 74, - [619] = 550, - [620] = 555, - [621] = 556, - [622] = 558, - [623] = 587, - [624] = 580, - [625] = 532, - [626] = 551, - [627] = 559, - [628] = 560, - [629] = 589, - [630] = 561, - [631] = 603, + [608] = 608, + [609] = 609, + [610] = 610, + [611] = 611, + [612] = 612, + [613] = 613, + [614] = 614, + [615] = 615, + [616] = 616, + [617] = 617, + [618] = 89, + [619] = 619, + [620] = 620, + [621] = 621, + [622] = 622, + [623] = 623, + [624] = 624, + [625] = 86, + [626] = 626, + [627] = 627, + [628] = 628, + [629] = 629, + [630] = 630, + [631] = 631, [632] = 632, - [633] = 562, - [634] = 515, - [635] = 563, - [636] = 564, - [637] = 526, - [638] = 72, - [639] = 565, - [640] = 566, - [641] = 527, - [642] = 70, - [643] = 511, - [644] = 534, + [633] = 633, + [634] = 634, + [635] = 635, + [636] = 636, + [637] = 637, + [638] = 638, + [639] = 639, + [640] = 640, + [641] = 641, + [642] = 642, + [643] = 643, + [644] = 644, [645] = 645, - [646] = 71, - [647] = 516, - [648] = 517, - [649] = 518, - [650] = 73, - [651] = 528, - [652] = 75, - [653] = 519, - [654] = 520, - [655] = 521, - [656] = 68, - [657] = 522, - [658] = 535, - [659] = 552, - [660] = 553, - [661] = 69, - [662] = 554, - [663] = 567, - [664] = 568, - [665] = 514, - [666] = 596, - [667] = 525, - [668] = 533, - [669] = 542, - [670] = 529, - [671] = 632, - [672] = 524, - [673] = 575, - [674] = 530, - [675] = 536, - [676] = 537, - [677] = 523, - [678] = 531, - [679] = 539, - [680] = 540, - [681] = 541, - [682] = 514, - [683] = 573, - [684] = 583, - [685] = 543, - [686] = 585, - [687] = 586, - [688] = 544, - [689] = 580, - [690] = 582, - [691] = 588, - [692] = 575, - [693] = 583, - [694] = 585, - [695] = 586, - [696] = 588, - [697] = 590, - [698] = 590, - [699] = 591, - [700] = 592, - [701] = 574, - [702] = 593, - [703] = 594, - [704] = 595, - [705] = 598, - [706] = 600, - [707] = 602, - [708] = 576, - [709] = 578, - [710] = 591, - [711] = 592, - [712] = 587, - [713] = 589, - [714] = 603, - [715] = 574, - [716] = 593, - [717] = 594, - [718] = 596, - [719] = 595, - [720] = 598, - [721] = 600, - [722] = 602, - [723] = 545, - [724] = 546, - [725] = 511, - [726] = 547, - [727] = 581, - [728] = 576, - [729] = 548, - [730] = 578, - [731] = 549, - [732] = 581, - [733] = 582, - [734] = 734, - [735] = 645, - [736] = 736, - [737] = 737, - [738] = 738, - [739] = 739, - [740] = 525, - [741] = 533, - [742] = 542, - [743] = 743, - [744] = 744, - [745] = 745, - [746] = 746, - [747] = 747, - [748] = 748, - [749] = 749, - [750] = 750, - [751] = 751, - [752] = 752, - [753] = 753, - [754] = 754, - [755] = 754, - [756] = 753, - [757] = 596, + [646] = 646, + [647] = 87, + [648] = 648, + [649] = 649, + [650] = 650, + [651] = 651, + [652] = 632, + [653] = 653, + [654] = 654, + [655] = 655, + [656] = 656, + [657] = 581, + [658] = 658, + [659] = 590, + [660] = 660, + [661] = 661, + [662] = 662, + [663] = 663, + [664] = 664, + [665] = 648, + [666] = 666, + [667] = 667, + [668] = 668, + [669] = 669, + [670] = 603, + [671] = 671, + [672] = 672, + [673] = 673, + [674] = 674, + [675] = 675, + [676] = 676, + [677] = 677, + [678] = 678, + [679] = 679, + [680] = 680, + [681] = 583, + [682] = 585, + [683] = 603, + [684] = 92, + [685] = 632, + [686] = 589, + [687] = 614, + [688] = 590, + [689] = 640, + [690] = 690, + [691] = 591, + [692] = 587, + [693] = 92, + [694] = 648, + [695] = 588, + [696] = 660, + [697] = 617, + [698] = 653, + [699] = 596, + [700] = 597, + [701] = 598, + [702] = 94, + [703] = 661, + [704] = 662, + [705] = 669, + [706] = 599, + [707] = 671, + [708] = 672, + [709] = 673, + [710] = 674, + [711] = 675, + [712] = 676, + [713] = 677, + [714] = 678, + [715] = 679, + [716] = 680, + [717] = 667, + [718] = 654, + [719] = 660, + [720] = 600, + [721] = 664, + [722] = 666, + [723] = 668, + [724] = 93, + [725] = 661, + [726] = 662, + [727] = 655, + [728] = 601, + [729] = 658, + [730] = 603, + [731] = 632, + [732] = 604, + [733] = 648, + [734] = 616, + [735] = 651, + [736] = 636, + [737] = 630, + [738] = 621, + [739] = 635, + [740] = 646, + [741] = 639, + [742] = 629, + [743] = 644, + [744] = 606, + [745] = 608, + [746] = 602, + [747] = 634, + [748] = 615, + [749] = 669, + [750] = 642, + [751] = 671, + [752] = 95, + [753] = 672, + [754] = 645, + [755] = 650, + [756] = 673, + [757] = 622, [758] = 607, - [759] = 525, - [760] = 760, - [761] = 533, - [762] = 542, - [763] = 763, - [764] = 603, - [765] = 753, - [766] = 766, - [767] = 767, - [768] = 768, - [769] = 754, - [770] = 760, - [771] = 771, - [772] = 772, - [773] = 768, - [774] = 774, - [775] = 775, - [776] = 753, - [777] = 777, - [778] = 778, - [779] = 779, - [780] = 780, - [781] = 580, - [782] = 582, - [783] = 783, - [784] = 751, - [785] = 575, - [786] = 589, - [787] = 585, - [788] = 788, - [789] = 777, - [790] = 586, - [791] = 791, - [792] = 588, + [759] = 626, + [760] = 674, + [761] = 761, + [762] = 653, + [763] = 675, + [764] = 631, + [765] = 765, + [766] = 619, + [767] = 649, + [768] = 98, + [769] = 655, + [770] = 593, + [771] = 590, + [772] = 620, + [773] = 605, + [774] = 96, + [775] = 676, + [776] = 677, + [777] = 678, + [778] = 679, + [779] = 627, + [780] = 680, + [781] = 623, + [782] = 99, + [783] = 595, + [784] = 609, + [785] = 624, + [786] = 612, + [787] = 656, + [788] = 610, + [789] = 641, + [790] = 611, + [791] = 667, + [792] = 664, [793] = 590, - [794] = 591, - [795] = 592, - [796] = 581, - [797] = 771, - [798] = 574, - [799] = 593, - [800] = 594, - [801] = 595, - [802] = 598, - [803] = 778, - [804] = 600, - [805] = 783, - [806] = 602, - [807] = 791, - [808] = 576, - [809] = 809, - [810] = 578, - [811] = 788, - [812] = 767, + [794] = 628, + [795] = 598, + [796] = 663, + [797] = 637, + [798] = 97, + [799] = 100, + [800] = 638, + [801] = 613, + [802] = 663, + [803] = 654, + [804] = 765, + [805] = 592, + [806] = 666, + [807] = 643, + [808] = 656, + [809] = 658, + [810] = 633, + [811] = 668, + [812] = 648, [813] = 813, - [814] = 587, - [815] = 736, - [816] = 632, - [817] = 766, - [818] = 583, - [819] = 576, - [820] = 511, + [814] = 814, + [815] = 815, + [816] = 816, + [817] = 603, + [818] = 818, + [819] = 761, + [820] = 632, [821] = 821, - [822] = 514, + [822] = 822, [823] = 823, - [824] = 823, + [824] = 824, [825] = 825, - [826] = 823, - [827] = 823, - [828] = 823, - [829] = 823, - [830] = 744, + [826] = 826, + [827] = 827, + [828] = 828, + [829] = 829, + [830] = 830, [831] = 831, [832] = 832, [833] = 833, - [834] = 580, - [835] = 582, - [836] = 575, - [837] = 583, - [838] = 585, - [839] = 586, - [840] = 588, - [841] = 590, - [842] = 591, - [843] = 592, - [844] = 574, - [845] = 593, - [846] = 594, - [847] = 595, - [848] = 598, - [849] = 600, - [850] = 602, - [851] = 578, - [852] = 587, - [853] = 589, - [854] = 603, - [855] = 596, - [856] = 581, + [834] = 834, + [835] = 835, + [836] = 836, + [837] = 837, + [838] = 838, + [839] = 839, + [840] = 840, + [841] = 841, + [842] = 842, + [843] = 843, + [844] = 844, + [845] = 845, + [846] = 846, + [847] = 847, + [848] = 690, + [849] = 849, + [850] = 850, + [851] = 765, + [852] = 603, + [853] = 632, + [854] = 648, + [855] = 826, + [856] = 828, [857] = 857, - [858] = 858, - [859] = 857, - [860] = 857, - [861] = 861, - [862] = 857, - [863] = 736, - [864] = 857, - [865] = 861, - [866] = 866, - [867] = 867, - [868] = 867, - [869] = 869, - [870] = 870, - [871] = 871, - [872] = 870, - [873] = 870, - [874] = 871, - [875] = 875, - [876] = 876, - [877] = 877, - [878] = 877, - [879] = 871, + [858] = 841, + [859] = 847, + [860] = 849, + [861] = 850, + [862] = 862, + [863] = 863, + [864] = 842, + [865] = 828, + [866] = 857, + [867] = 847, + [868] = 828, + [869] = 857, + [870] = 828, + [871] = 828, + [872] = 872, + [873] = 862, + [874] = 874, + [875] = 857, + [876] = 831, + [877] = 832, + [878] = 840, + [879] = 879, [880] = 880, [881] = 881, - [882] = 882, - [883] = 881, - [884] = 882, - [885] = 881, - [886] = 882, - [887] = 882, - [888] = 882, - [889] = 881, - [890] = 882, - [891] = 881, - [892] = 881, - [893] = 893, - [894] = 893, - [895] = 895, - [896] = 893, - [897] = 893, - [898] = 893, - [899] = 893, - [900] = 900, - [901] = 901, - [902] = 902, - [903] = 903, - [904] = 904, - [905] = 905, - [906] = 906, - [907] = 907, - [908] = 908, - [909] = 909, - [910] = 910, - [911] = 911, - [912] = 912, - [913] = 913, + [882] = 874, + [883] = 883, + [884] = 863, + [885] = 883, + [886] = 886, + [887] = 660, + [888] = 598, + [889] = 889, + [890] = 656, + [891] = 658, + [892] = 653, + [893] = 660, + [894] = 661, + [895] = 662, + [896] = 669, + [897] = 671, + [898] = 672, + [899] = 673, + [900] = 674, + [901] = 675, + [902] = 676, + [903] = 677, + [904] = 678, + [905] = 679, + [906] = 680, + [907] = 667, + [908] = 654, + [909] = 664, + [910] = 666, + [911] = 668, + [912] = 655, + [913] = 663, [914] = 914, [915] = 915, [916] = 916, - [917] = 917, - [918] = 918, - [919] = 919, - [920] = 920, - [921] = 921, - [922] = 922, - [923] = 923, - [924] = 924, - [925] = 925, - [926] = 926, - [927] = 927, - [928] = 928, - [929] = 929, - [930] = 930, - [931] = 931, - [932] = 932, - [933] = 933, - [934] = 934, - [935] = 935, - [936] = 936, - [937] = 937, - [938] = 938, - [939] = 939, - [940] = 940, + [917] = 590, + [918] = 663, + [919] = 656, + [920] = 658, + [921] = 653, + [922] = 590, + [923] = 662, + [924] = 669, + [925] = 671, + [926] = 672, + [927] = 673, + [928] = 674, + [929] = 675, + [930] = 676, + [931] = 677, + [932] = 678, + [933] = 679, + [934] = 680, + [935] = 667, + [936] = 654, + [937] = 664, + [938] = 666, + [939] = 668, + [940] = 655, [941] = 941, - [942] = 942, - [943] = 943, - [944] = 944, - [945] = 945, - [946] = 946, - [947] = 947, - [948] = 63, - [949] = 949, - [950] = 950, - [951] = 951, - [952] = 952, - [953] = 64, - [954] = 954, - [955] = 955, - [956] = 61, - [957] = 65, - [958] = 958, - [959] = 959, - [960] = 960, - [961] = 906, - [962] = 962, - [963] = 963, - [964] = 964, - [965] = 907, - [966] = 966, - [967] = 906, - [968] = 960, + [942] = 656, + [943] = 658, + [944] = 653, + [945] = 660, + [946] = 661, + [947] = 662, + [948] = 669, + [949] = 671, + [950] = 672, + [951] = 673, + [952] = 674, + [953] = 675, + [954] = 676, + [955] = 677, + [956] = 678, + [957] = 679, + [958] = 680, + [959] = 667, + [960] = 654, + [961] = 664, + [962] = 666, + [963] = 668, + [964] = 655, + [965] = 827, + [966] = 663, + [967] = 661, + [968] = 968, [969] = 969, - [970] = 911, + [970] = 968, [971] = 971, - [972] = 916, - [973] = 973, - [974] = 923, + [972] = 968, + [973] = 968, + [974] = 968, [975] = 975, - [976] = 544, - [977] = 920, - [978] = 978, - [979] = 919, - [980] = 980, + [976] = 975, + [977] = 968, + [978] = 826, + [979] = 979, + [980] = 979, [981] = 981, - [982] = 916, + [982] = 982, [983] = 983, - [984] = 978, - [985] = 983, - [986] = 975, - [987] = 987, - [988] = 980, + [984] = 982, + [985] = 985, + [986] = 986, + [987] = 986, + [988] = 982, [989] = 989, - [990] = 987, - [991] = 991, + [990] = 983, + [991] = 983, [992] = 992, - [993] = 991, - [994] = 992, - [995] = 995, - [996] = 996, - [997] = 918, - [998] = 995, - [999] = 996, - [1000] = 564, - [1001] = 568, - [1002] = 1002, - [1003] = 981, - [1004] = 1004, - [1005] = 989, - [1006] = 1006, - [1007] = 973, - [1008] = 1008, + [993] = 993, + [994] = 994, + [995] = 993, + [996] = 994, + [997] = 993, + [998] = 994, + [999] = 993, + [1000] = 994, + [1001] = 994, + [1002] = 993, + [1003] = 993, + [1004] = 994, + [1005] = 1005, + [1006] = 1005, + [1007] = 1005, + [1008] = 1005, [1009] = 1009, - [1010] = 1010, - [1011] = 1011, + [1010] = 1005, + [1011] = 1005, [1012] = 1012, - [1013] = 1009, + [1013] = 1013, [1014] = 1014, [1015] = 1015, - [1016] = 1012, + [1016] = 1016, [1017] = 1017, - [1018] = 1015, - [1019] = 1015, + [1018] = 1018, + [1019] = 1019, [1020] = 1020, - [1021] = 1011, + [1021] = 1021, [1022] = 1022, - [1023] = 1015, - [1024] = 1022, - [1025] = 1010, - [1026] = 1020, - [1027] = 1008, - [1028] = 1017, - [1029] = 1015, - [1030] = 1014, + [1023] = 1023, + [1024] = 1024, + [1025] = 1025, + [1026] = 1026, + [1027] = 1027, + [1028] = 1028, + [1029] = 1029, + [1030] = 1030, [1031] = 1031, [1032] = 1032, [1033] = 1033, [1034] = 1034, - [1035] = 1032, - [1036] = 1034, - [1037] = 1033, - [1038] = 1032, - [1039] = 1033, - [1040] = 1034, - [1041] = 1032, - [1042] = 1034, - [1043] = 1033, + [1035] = 1035, + [1036] = 1036, + [1037] = 1037, + [1038] = 1038, + [1039] = 1039, + [1040] = 1040, + [1041] = 1041, + [1042] = 88, + [1043] = 1043, [1044] = 1044, [1045] = 1045, - [1046] = 1044, - [1047] = 1047, - [1048] = 1047, - [1049] = 1044, - [1050] = 1047, - [1051] = 1044, - [1052] = 1047, + [1046] = 1046, + [1047] = 91, + [1048] = 1048, + [1049] = 1049, + [1050] = 1050, + [1051] = 1051, + [1052] = 1052, [1053] = 1053, [1054] = 1054, - [1055] = 1054, + [1055] = 1055, [1056] = 1056, [1057] = 1057, [1058] = 1058, - [1059] = 1058, - [1060] = 1057, + [1059] = 1059, + [1060] = 1060, [1061] = 1061, [1062] = 1062, - [1063] = 1062, - [1064] = 1061, - [1065] = 1057, - [1066] = 1054, - [1067] = 1061, - [1068] = 1061, - [1069] = 1058, + [1063] = 1063, + [1064] = 1064, + [1065] = 1065, + [1066] = 1066, + [1067] = 1038, + [1068] = 1068, + [1069] = 1069, [1070] = 1070, - [1071] = 1058, - [1072] = 1054, - [1073] = 1062, - [1074] = 1062, - [1075] = 1057, - [1076] = 1076, + [1071] = 1071, + [1072] = 1072, + [1073] = 1073, + [1074] = 1074, + [1075] = 87, + [1076] = 1018, [1077] = 1077, [1078] = 1078, - [1079] = 1079, + [1079] = 1017, [1080] = 1080, [1081] = 1081, - [1082] = 1082, - [1083] = 1082, - [1084] = 1082, - [1085] = 1082, + [1082] = 1026, + [1083] = 1026, + [1084] = 1072, + [1085] = 89, [1086] = 1086, - [1087] = 1087, - [1088] = 1088, + [1087] = 1086, + [1088] = 1030, [1089] = 1089, - [1090] = 1082, - [1091] = 1091, + [1090] = 1032, + [1091] = 1033, [1092] = 1092, [1093] = 1093, [1094] = 1094, @@ -3541,106 +3605,106 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1096] = 1096, [1097] = 1097, [1098] = 1098, - [1099] = 1099, - [1100] = 1100, - [1101] = 1082, - [1102] = 1102, + [1099] = 1029, + [1100] = 634, + [1101] = 1101, + [1102] = 1031, [1103] = 1103, - [1104] = 1104, - [1105] = 1105, + [1104] = 1029, + [1105] = 1089, [1106] = 1106, [1107] = 1107, - [1108] = 1108, - [1109] = 1109, - [1110] = 1110, + [1108] = 1103, + [1109] = 1098, + [1110] = 1101, [1111] = 1111, - [1112] = 569, - [1113] = 1113, - [1114] = 1114, - [1115] = 1115, - [1116] = 1089, - [1117] = 1117, - [1118] = 1118, - [1119] = 1119, - [1120] = 571, - [1121] = 1088, - [1122] = 1106, + [1112] = 1111, + [1113] = 1092, + [1114] = 1093, + [1115] = 1095, + [1116] = 1096, + [1117] = 1107, + [1118] = 601, + [1119] = 638, + [1120] = 1120, + [1121] = 1121, + [1122] = 1122, [1123] = 1123, - [1124] = 1124, + [1124] = 1120, [1125] = 1125, [1126] = 1126, - [1127] = 1102, - [1128] = 1100, - [1129] = 1093, - [1130] = 1130, - [1131] = 1131, - [1132] = 1115, - [1133] = 1133, - [1134] = 547, - [1135] = 1135, - [1136] = 1136, - [1137] = 1137, + [1127] = 1127, + [1128] = 1128, + [1129] = 1123, + [1130] = 1125, + [1131] = 1122, + [1132] = 1132, + [1133] = 1126, + [1134] = 1121, + [1135] = 1127, + [1136] = 1128, + [1137] = 1132, [1138] = 1138, - [1139] = 1137, - [1140] = 1140, - [1141] = 1141, - [1142] = 1142, - [1143] = 1143, + [1139] = 1138, + [1140] = 1138, + [1141] = 1138, + [1142] = 1138, + [1143] = 1138, [1144] = 1144, - [1145] = 1144, - [1146] = 553, - [1147] = 554, - [1148] = 1137, - [1149] = 555, - [1150] = 556, - [1151] = 1151, - [1152] = 1152, - [1153] = 1153, - [1154] = 1154, - [1155] = 565, - [1156] = 1156, + [1145] = 1145, + [1146] = 1146, + [1147] = 1145, + [1148] = 1146, + [1149] = 1149, + [1150] = 1149, + [1151] = 1145, + [1152] = 1145, + [1153] = 1149, + [1154] = 1146, + [1155] = 1149, + [1156] = 1146, [1157] = 1157, - [1158] = 1141, - [1159] = 1159, + [1158] = 1158, + [1159] = 1158, [1160] = 1160, - [1161] = 1161, - [1162] = 531, - [1163] = 1136, - [1164] = 1137, - [1165] = 1165, - [1166] = 1142, - [1167] = 569, + [1161] = 1157, + [1162] = 1158, + [1163] = 1158, + [1164] = 1157, + [1165] = 1157, + [1166] = 1166, + [1167] = 1167, [1168] = 1168, - [1169] = 1161, - [1170] = 1156, + [1169] = 1169, + [1170] = 1170, [1171] = 1171, - [1172] = 531, - [1173] = 537, + [1172] = 1172, + [1173] = 1173, [1174] = 1174, - [1175] = 1135, - [1176] = 1176, - [1177] = 546, - [1178] = 547, - [1179] = 537, - [1180] = 553, - [1181] = 554, - [1182] = 555, - [1183] = 556, - [1184] = 565, - [1185] = 1153, - [1186] = 1186, - [1187] = 1144, - [1188] = 1144, - [1189] = 1189, - [1190] = 1151, + [1175] = 1173, + [1176] = 1174, + [1177] = 1177, + [1178] = 1167, + [1179] = 1173, + [1180] = 1166, + [1181] = 1173, + [1182] = 1177, + [1183] = 1177, + [1184] = 1167, + [1185] = 1177, + [1186] = 1167, + [1187] = 1166, + [1188] = 1166, + [1189] = 1174, + [1190] = 1174, [1191] = 1191, [1192] = 1192, [1193] = 1193, [1194] = 1194, - [1195] = 546, - [1196] = 571, - [1197] = 1174, - [1198] = 1186, + [1195] = 1195, + [1196] = 1196, + [1197] = 1197, + [1198] = 1198, [1199] = 1199, [1200] = 1200, [1201] = 1201, @@ -3649,124 +3713,124 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1204] = 1204, [1205] = 1205, [1206] = 1206, - [1207] = 1203, + [1207] = 1207, [1208] = 1208, [1209] = 1209, [1210] = 1210, - [1211] = 1086, - [1212] = 1201, + [1211] = 1210, + [1212] = 1210, [1213] = 1213, - [1214] = 1214, - [1215] = 1110, - [1216] = 1126, - [1217] = 1217, + [1214] = 1210, + [1215] = 1215, + [1216] = 1216, + [1217] = 1210, [1218] = 1218, - [1219] = 1159, - [1220] = 1220, + [1219] = 1219, + [1220] = 1210, [1221] = 1221, [1222] = 1222, [1223] = 1223, - [1224] = 1200, - [1225] = 1222, + [1224] = 1224, + [1225] = 1225, [1226] = 1226, - [1227] = 1200, - [1228] = 1210, + [1227] = 1227, + [1228] = 1228, [1229] = 1229, [1230] = 1230, [1231] = 1231, [1232] = 1232, - [1233] = 1217, - [1234] = 1234, - [1235] = 1214, - [1236] = 1222, - [1237] = 1237, - [1238] = 1238, - [1239] = 1200, + [1233] = 1233, + [1234] = 1222, + [1235] = 640, + [1236] = 1236, + [1237] = 614, + [1238] = 1206, + [1239] = 1239, [1240] = 1240, - [1241] = 1229, - [1242] = 1078, + [1241] = 1241, + [1242] = 1229, [1243] = 1243, - [1244] = 1244, - [1245] = 1226, - [1246] = 1208, - [1247] = 1226, - [1248] = 1248, - [1249] = 1214, - [1250] = 1222, + [1244] = 1240, + [1245] = 1245, + [1246] = 1246, + [1247] = 1218, + [1248] = 1207, + [1249] = 1219, + [1250] = 1250, [1251] = 1251, [1252] = 1252, - [1253] = 1204, + [1253] = 1253, [1254] = 1254, - [1255] = 1255, - [1256] = 1118, + [1255] = 608, + [1256] = 593, [1257] = 1257, - [1258] = 1258, - [1259] = 1230, + [1258] = 610, + [1259] = 611, [1260] = 1260, [1261] = 1261, - [1262] = 1254, - [1263] = 1263, - [1264] = 1264, - [1265] = 1265, - [1266] = 1226, - [1267] = 1234, - [1268] = 1268, - [1269] = 1214, - [1270] = 1270, + [1262] = 1262, + [1263] = 621, + [1264] = 622, + [1265] = 623, + [1266] = 1266, + [1267] = 1267, + [1268] = 1261, + [1269] = 624, + [1270] = 592, [1271] = 1271, - [1272] = 1232, - [1273] = 1237, - [1274] = 1274, - [1275] = 1275, + [1272] = 1272, + [1273] = 1273, + [1274] = 614, + [1275] = 593, [1276] = 1276, [1277] = 1277, [1278] = 1278, [1279] = 1279, [1280] = 1280, - [1281] = 1281, + [1281] = 610, [1282] = 1282, [1283] = 1283, [1284] = 1284, [1285] = 1285, - [1286] = 1286, + [1286] = 1284, [1287] = 1287, - [1288] = 1288, - [1289] = 1289, - [1290] = 1290, - [1291] = 1289, + [1288] = 1260, + [1289] = 1273, + [1290] = 611, + [1291] = 1291, [1292] = 1292, [1293] = 1293, - [1294] = 1294, - [1295] = 1295, - [1296] = 1296, + [1294] = 621, + [1295] = 1279, + [1296] = 1262, [1297] = 1297, - [1298] = 1298, - [1299] = 1299, - [1300] = 1300, + [1298] = 1271, + [1299] = 622, + [1300] = 623, [1301] = 1301, - [1302] = 1302, - [1303] = 1303, + [1302] = 624, + [1303] = 1260, [1304] = 1304, [1305] = 1305, - [1306] = 1306, - [1307] = 1307, - [1308] = 1308, - [1309] = 1292, - [1310] = 1296, + [1306] = 1267, + [1307] = 1282, + [1308] = 592, + [1309] = 1309, + [1310] = 1293, [1311] = 1311, - [1312] = 1312, - [1313] = 1313, - [1314] = 1305, - [1315] = 1315, - [1316] = 1316, - [1317] = 1306, - [1318] = 1318, - [1319] = 1303, - [1320] = 1304, + [1312] = 608, + [1313] = 1279, + [1314] = 1266, + [1315] = 1279, + [1316] = 640, + [1317] = 1317, + [1318] = 1260, + [1319] = 1287, + [1320] = 1320, [1321] = 1321, [1322] = 1322, - [1323] = 345, - [1324] = 1324, + [1323] = 1323, + [1324] = 1253, [1325] = 1325, [1326] = 1326, [1327] = 1327, @@ -3774,82 +3838,82 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1329] = 1329, [1330] = 1330, [1331] = 1331, - [1332] = 1281, - [1333] = 1289, - [1334] = 1292, - [1335] = 1312, - [1336] = 1297, + [1332] = 1330, + [1333] = 1326, + [1334] = 1331, + [1335] = 1335, + [1336] = 1336, [1337] = 1337, - [1338] = 1285, - [1339] = 1339, - [1340] = 1337, + [1338] = 1338, + [1339] = 1330, + [1340] = 1251, [1341] = 1341, - [1342] = 1325, - [1343] = 1343, - [1344] = 1326, - [1345] = 1328, - [1346] = 1341, - [1347] = 1305, - [1348] = 1274, - [1349] = 1322, - [1350] = 1296, - [1351] = 1316, - [1352] = 1311, - [1353] = 1324, - [1354] = 1297, - [1355] = 1283, - [1356] = 1284, - [1357] = 1357, - [1358] = 1315, + [1342] = 1342, + [1343] = 1322, + [1344] = 1204, + [1345] = 1345, + [1346] = 1227, + [1347] = 1347, + [1348] = 1348, + [1349] = 1328, + [1350] = 1328, + [1351] = 1329, + [1352] = 1329, + [1353] = 1353, + [1354] = 1354, + [1355] = 1355, + [1356] = 1356, + [1357] = 1330, + [1358] = 1358, [1359] = 1359, [1360] = 1360, - [1361] = 1361, - [1362] = 1303, - [1363] = 1363, - [1364] = 1304, - [1365] = 1305, - [1366] = 1366, - [1367] = 1306, - [1368] = 1368, - [1369] = 1343, - [1370] = 1275, + [1361] = 1328, + [1362] = 1362, + [1363] = 1329, + [1364] = 1331, + [1365] = 1365, + [1366] = 1241, + [1367] = 1353, + [1368] = 1362, + [1369] = 1331, + [1370] = 1370, [1371] = 1371, [1372] = 1372, - [1373] = 1373, - [1374] = 1374, + [1373] = 1345, + [1374] = 1336, [1375] = 1375, [1376] = 1376, [1377] = 1377, [1378] = 1378, - [1379] = 1379, + [1379] = 1224, [1380] = 1380, [1381] = 1381, - [1382] = 1382, + [1382] = 1347, [1383] = 1383, [1384] = 1384, [1385] = 1385, - [1386] = 1386, - [1387] = 1387, - [1388] = 1388, + [1386] = 1378, + [1387] = 1376, + [1388] = 1381, [1389] = 1389, [1390] = 1390, [1391] = 1391, - [1392] = 1392, - [1393] = 1393, + [1392] = 1360, + [1393] = 1323, [1394] = 1394, [1395] = 1395, [1396] = 1396, - [1397] = 534, + [1397] = 1397, [1398] = 1398, [1399] = 1399, [1400] = 1400, [1401] = 1401, [1402] = 1402, - [1403] = 1403, + [1403] = 411, [1404] = 1404, [1405] = 1405, - [1406] = 550, - [1407] = 551, + [1406] = 1402, + [1407] = 1407, [1408] = 1408, [1409] = 1409, [1410] = 1410, @@ -3857,12 +3921,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1412] = 1412, [1413] = 1413, [1414] = 1414, - [1415] = 1390, + [1415] = 1415, [1416] = 1416, - [1417] = 1392, + [1417] = 1417, [1418] = 1418, [1419] = 1419, - [1420] = 1420, + [1420] = 1416, [1421] = 1421, [1422] = 1422, [1423] = 1423, @@ -3870,7 +3934,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1425] = 1425, [1426] = 1426, [1427] = 1427, - [1428] = 1428, + [1428] = 1424, [1429] = 1429, [1430] = 1430, [1431] = 1431, @@ -3879,83 +3943,83 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1434] = 1434, [1435] = 1435, [1436] = 1436, - [1437] = 1437, - [1438] = 1438, + [1437] = 1405, + [1438] = 1432, [1439] = 1439, [1440] = 1440, - [1441] = 1441, + [1441] = 1422, [1442] = 1442, [1443] = 1443, - [1444] = 1444, - [1445] = 1445, + [1444] = 1424, + [1445] = 1432, [1446] = 1446, [1447] = 1447, [1448] = 1448, [1449] = 1449, [1450] = 1450, - [1451] = 1451, - [1452] = 1452, + [1451] = 1430, + [1452] = 1419, [1453] = 1453, [1454] = 1454, - [1455] = 1455, + [1455] = 1436, [1456] = 1456, - [1457] = 1457, - [1458] = 1412, + [1457] = 1454, + [1458] = 1402, [1459] = 1459, [1460] = 1460, - [1461] = 1461, + [1461] = 1449, [1462] = 1462, [1463] = 1463, - [1464] = 1464, - [1465] = 1465, - [1466] = 1377, - [1467] = 1467, + [1464] = 1418, + [1465] = 1436, + [1466] = 1466, + [1467] = 1422, [1468] = 1468, - [1469] = 1433, - [1470] = 1436, - [1471] = 1471, + [1469] = 1469, + [1470] = 1470, + [1471] = 1399, [1472] = 1472, - [1473] = 1438, - [1474] = 1431, + [1473] = 1401, + [1474] = 1474, [1475] = 1475, - [1476] = 1476, + [1476] = 1466, [1477] = 1477, - [1478] = 1478, - [1479] = 1479, - [1480] = 1480, - [1481] = 1481, + [1478] = 1404, + [1479] = 1462, + [1480] = 1405, + [1481] = 1472, [1482] = 1482, - [1483] = 1483, - [1484] = 1484, - [1485] = 1380, + [1483] = 1429, + [1484] = 1413, + [1485] = 1460, [1486] = 1486, - [1487] = 1410, - [1488] = 1414, - [1489] = 1422, - [1490] = 1490, - [1491] = 1491, - [1492] = 1492, + [1487] = 1418, + [1488] = 1488, + [1489] = 1489, + [1490] = 1450, + [1491] = 1409, + [1492] = 1400, [1493] = 1493, - [1494] = 1444, - [1495] = 1374, - [1496] = 1496, + [1494] = 1411, + [1495] = 1495, + [1496] = 1424, [1497] = 1497, - [1498] = 1498, - [1499] = 1499, + [1498] = 1440, + [1499] = 1449, [1500] = 1500, [1501] = 1501, [1502] = 1502, - [1503] = 1463, - [1504] = 1405, - [1505] = 1408, - [1506] = 1409, - [1507] = 1416, - [1508] = 1462, - [1509] = 1465, + [1503] = 1503, + [1504] = 1504, + [1505] = 1505, + [1506] = 1506, + [1507] = 1503, + [1508] = 1508, + [1509] = 1504, [1510] = 1510, [1511] = 1511, [1512] = 1512, - [1513] = 1418, + [1513] = 1513, [1514] = 1514, [1515] = 1515, [1516] = 1516, @@ -3963,220 +4027,459 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1518] = 1518, [1519] = 1519, [1520] = 1520, - [1521] = 1521, - [1522] = 1396, - [1523] = 1523, - [1524] = 1478, - [1525] = 1372, - [1526] = 1371, - [1527] = 1510, + [1521] = 616, + [1522] = 617, + [1523] = 1506, + [1524] = 1524, + [1525] = 1525, + [1526] = 1526, + [1527] = 1511, [1528] = 1528, - [1529] = 1376, - [1530] = 1515, - [1531] = 1516, - [1532] = 1517, + [1529] = 1529, + [1530] = 1530, + [1531] = 1531, + [1532] = 1532, [1533] = 1533, - [1534] = 1390, - [1535] = 1480, - [1536] = 1392, + [1534] = 1512, + [1535] = 1535, + [1536] = 1536, [1537] = 1537, - [1538] = 1384, - [1539] = 1386, + [1538] = 1538, + [1539] = 1539, [1540] = 1540, - [1541] = 1395, - [1542] = 1403, + [1541] = 1541, + [1542] = 1542, [1543] = 1543, - [1544] = 1391, - [1545] = 1428, + [1544] = 1544, + [1545] = 1545, [1546] = 1546, - [1547] = 1432, - [1548] = 1492, - [1549] = 1549, - [1550] = 1537, - [1551] = 1521, - [1552] = 1518, - [1553] = 1519, - [1554] = 1520, - [1555] = 1439, - [1556] = 1452, - [1557] = 1459, + [1547] = 1547, + [1548] = 1389, + [1549] = 1511, + [1550] = 1512, + [1551] = 1551, + [1552] = 1552, + [1553] = 1553, + [1554] = 1554, + [1555] = 1519, + [1556] = 1556, + [1557] = 1542, [1558] = 1558, - [1559] = 1270, - [1560] = 1533, + [1559] = 1559, + [1560] = 1560, [1561] = 1561, [1562] = 1562, [1563] = 1563, - [1564] = 1427, - [1565] = 1434, + [1564] = 1564, + [1565] = 1565, [1566] = 1566, - [1567] = 1437, + [1567] = 1567, [1568] = 1568, - [1569] = 1442, + [1569] = 1569, [1570] = 1570, - [1571] = 1499, + [1571] = 1571, [1572] = 1572, - [1573] = 1481, - [1574] = 1574, + [1573] = 1501, + [1574] = 1502, [1575] = 1575, [1576] = 1576, - [1577] = 1496, - [1578] = 1486, - [1579] = 1426, + [1577] = 1577, + [1578] = 1578, + [1579] = 1579, [1580] = 1580, - [1581] = 1390, - [1582] = 1392, - [1583] = 1500, - [1584] = 1566, - [1585] = 1501, - [1586] = 1586, - [1587] = 1441, + [1581] = 1581, + [1582] = 1582, + [1583] = 1529, + [1584] = 1539, + [1585] = 1540, + [1586] = 1518, + [1587] = 1587, [1588] = 1588, - [1589] = 1450, - [1590] = 1373, - [1591] = 1497, - [1592] = 1375, - [1593] = 1378, - [1594] = 1404, - [1595] = 1493, - [1596] = 1514, - [1597] = 1456, - [1598] = 1563, - [1599] = 1580, - [1600] = 1460, - [1601] = 1413, - [1602] = 1471, - [1603] = 1472, - [1604] = 1475, - [1605] = 1502, - [1606] = 1586, - [1607] = 1419, - [1608] = 1608, - [1609] = 1420, - [1610] = 1484, - [1611] = 1425, - [1612] = 1449, - [1613] = 1512, - [1614] = 1467, - [1615] = 1615, - [1616] = 1616, - [1617] = 1617, - [1618] = 1618, - [1619] = 1619, + [1589] = 1589, + [1590] = 1590, + [1591] = 1591, + [1592] = 1592, + [1593] = 1552, + [1594] = 1559, + [1595] = 1561, + [1596] = 1562, + [1597] = 1565, + [1598] = 1568, + [1599] = 1569, + [1600] = 1570, + [1601] = 1572, + [1602] = 1575, + [1603] = 1576, + [1604] = 1577, + [1605] = 1605, + [1606] = 1606, + [1607] = 1537, + [1608] = 1551, + [1609] = 1609, + [1610] = 1610, + [1611] = 1611, + [1612] = 1612, + [1613] = 1613, + [1614] = 1614, + [1615] = 1558, + [1616] = 1564, + [1617] = 1571, + [1618] = 1578, + [1619] = 1579, [1620] = 1620, - [1621] = 1621, + [1621] = 1589, [1622] = 1622, [1623] = 1623, [1624] = 1624, [1625] = 1625, [1626] = 1626, - [1627] = 1627, - [1628] = 1628, - [1629] = 1629, - [1630] = 1622, - [1631] = 1240, - [1632] = 1632, - [1633] = 1619, + [1627] = 1605, + [1628] = 1622, + [1629] = 1623, + [1630] = 1630, + [1631] = 1631, + [1632] = 1624, + [1633] = 1633, [1634] = 1634, [1635] = 1635, - [1636] = 1622, + [1636] = 1636, [1637] = 1637, [1638] = 1638, - [1639] = 1638, + [1639] = 1639, [1640] = 1640, - [1641] = 1637, + [1641] = 1641, [1642] = 1642, - [1643] = 1643, - [1644] = 1644, - [1645] = 1645, + [1643] = 1524, + [1644] = 1515, + [1645] = 1530, [1646] = 1646, - [1647] = 1621, - [1648] = 1637, - [1649] = 1644, - [1650] = 1617, + [1647] = 1647, + [1648] = 1648, + [1649] = 1649, + [1650] = 1650, [1651] = 1651, [1652] = 1652, [1653] = 1653, [1654] = 1654, - [1655] = 1623, - [1656] = 1656, - [1657] = 1651, + [1655] = 1655, + [1656] = 1554, + [1657] = 1517, [1658] = 1658, [1659] = 1659, [1660] = 1660, [1661] = 1661, [1662] = 1662, - [1663] = 1644, + [1663] = 1560, [1664] = 1664, - [1665] = 1665, - [1666] = 1623, + [1665] = 1531, + [1666] = 1666, [1667] = 1667, - [1668] = 1668, - [1669] = 1652, - [1670] = 1617, - [1671] = 1619, - [1672] = 1660, - [1673] = 1645, + [1668] = 1520, + [1669] = 1669, + [1670] = 1563, + [1671] = 1532, + [1672] = 1533, + [1673] = 1673, [1674] = 1674, - [1675] = 1675, + [1675] = 1536, [1676] = 1676, [1677] = 1677, - [1678] = 1658, - [1679] = 1624, + [1678] = 1678, + [1679] = 1626, [1680] = 1680, - [1681] = 1617, + [1681] = 1681, [1682] = 1682, [1683] = 1683, [1684] = 1684, [1685] = 1685, [1686] = 1686, [1687] = 1687, - [1688] = 1635, - [1689] = 1682, - [1690] = 1675, - [1691] = 1686, - [1692] = 1635, - [1693] = 1693, - [1694] = 1694, - [1695] = 1694, - [1696] = 1682, - [1697] = 1697, - [1698] = 1635, - [1699] = 1637, - [1700] = 1637, - [1701] = 1623, - [1702] = 1682, - [1703] = 1632, - [1704] = 1619, - [1705] = 1632, - [1706] = 1624, - [1707] = 1619, - [1708] = 1644, - [1709] = 1623, - [1710] = 1632, - [1711] = 1711, - [1712] = 1677, - [1713] = 1713, - [1714] = 1622, - [1715] = 1715, - [1716] = 1682, - [1717] = 1717, - [1718] = 1632, - [1719] = 1717, - [1720] = 1644, - [1721] = 1624, + [1688] = 1688, + [1689] = 1689, + [1690] = 1556, + [1691] = 1646, + [1692] = 1692, + [1693] = 1647, + [1694] = 1580, + [1695] = 1695, + [1696] = 1566, + [1697] = 1535, + [1698] = 1698, + [1699] = 1699, + [1700] = 1700, + [1701] = 1650, + [1702] = 1702, + [1703] = 1703, + [1704] = 1630, + [1705] = 1631, + [1706] = 1633, + [1707] = 1634, + [1708] = 1708, + [1709] = 1587, + [1710] = 1553, + [1711] = 1635, + [1712] = 1609, + [1713] = 1588, + [1714] = 1567, + [1715] = 1610, + [1716] = 1716, + [1717] = 1651, + [1718] = 1611, + [1719] = 1636, + [1720] = 1637, + [1721] = 1638, + [1722] = 1722, + [1723] = 1652, + [1724] = 1724, + [1725] = 1653, + [1726] = 1581, + [1727] = 1727, + [1728] = 1728, + [1729] = 1729, + [1730] = 1582, + [1731] = 1731, + [1732] = 1732, + [1733] = 1511, + [1734] = 1734, + [1735] = 1639, + [1736] = 1512, + [1737] = 639, + [1738] = 1510, + [1739] = 1612, + [1740] = 1613, + [1741] = 1614, + [1742] = 1640, + [1743] = 1641, + [1744] = 1642, + [1745] = 1590, + [1746] = 1684, + [1747] = 1747, + [1748] = 1748, + [1749] = 1749, + [1750] = 1748, + [1751] = 1751, + [1752] = 1752, + [1753] = 1753, + [1754] = 1754, + [1755] = 1755, + [1756] = 1756, + [1757] = 1757, + [1758] = 1758, + [1759] = 1759, + [1760] = 1760, + [1761] = 1761, + [1762] = 1762, + [1763] = 1763, + [1764] = 1764, + [1765] = 1765, + [1766] = 1766, + [1767] = 1342, + [1768] = 1768, + [1769] = 1769, + [1770] = 1770, + [1771] = 1756, + [1772] = 1772, + [1773] = 1773, + [1774] = 1774, + [1775] = 1775, + [1776] = 1762, + [1777] = 1756, + [1778] = 1763, + [1779] = 1763, + [1780] = 1768, + [1781] = 1781, + [1782] = 1782, + [1783] = 1783, + [1784] = 1784, + [1785] = 1769, + [1786] = 1786, + [1787] = 1770, + [1788] = 1788, + [1789] = 1789, + [1790] = 1762, + [1791] = 1791, + [1792] = 1792, + [1793] = 1793, + [1794] = 1758, + [1795] = 1764, + [1796] = 1796, + [1797] = 1797, + [1798] = 1756, + [1799] = 1799, + [1800] = 1800, + [1801] = 1801, + [1802] = 1762, + [1803] = 1763, + [1804] = 1804, + [1805] = 1805, + [1806] = 1806, + [1807] = 1807, + [1808] = 1770, + [1809] = 1756, + [1810] = 1768, + [1811] = 1804, + [1812] = 1760, + [1813] = 1782, + [1814] = 1799, + [1815] = 1762, + [1816] = 1763, + [1817] = 1804, + [1818] = 1768, + [1819] = 1768, + [1820] = 1781, + [1821] = 1782, + [1822] = 1770, + [1823] = 1781, + [1824] = 1782, + [1825] = 1825, + [1826] = 1804, + [1827] = 1781, + [1828] = 1828, + [1829] = 1769, + [1830] = 1756, + [1831] = 1831, + [1832] = 1769, + [1833] = 1833, + [1834] = 1782, + [1835] = 1835, + [1836] = 1836, + [1837] = 1837, + [1838] = 1831, + [1839] = 1839, + [1840] = 1840, + [1841] = 1749, + [1842] = 1842, + [1843] = 1789, + [1844] = 1844, + [1845] = 1765, + [1846] = 1799, + [1847] = 1847, + [1848] = 1848, + [1849] = 1763, + [1850] = 1850, + [1851] = 1768, + [1852] = 1835, + [1853] = 1853, + [1854] = 1854, + [1855] = 1855, + [1856] = 1781, + [1857] = 1762, + [1858] = 1858, + [1859] = 1782, + [1860] = 1860, + [1861] = 1799, + [1862] = 1862, + [1863] = 1863, + [1864] = 1864, + [1865] = 1754, + [1866] = 1866, + [1867] = 1858, + [1868] = 1847, + [1869] = 1781, +}; + +static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { + sym_declaration, + sym_expression, + sym_pattern, + sym_primary_expression, + sym_statement, +}; + +static const TSMapSlice ts_supertype_map_slices[] = { + [sym_declaration] = {.index = 0, .length = 6}, + [sym_expression] = {.index = 6, .length = 12}, + [sym_pattern] = {.index = 18, .length = 7}, + [sym_primary_expression] = {.index = 25, .length = 22}, + [sym_statement] = {.index = 47, .length = 20}, +}; + +static const TSSymbol ts_supertype_map_entries[] = { + [0] = + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_lexical_declaration, + sym_using_declaration, + sym_variable_declaration, + [6] = + sym_assignment_expression, + sym_augmented_assignment_expression, + sym_await_expression, + sym_binary_expression, + sym_jsx_element, + sym_jsx_self_closing_element, + sym_new_expression, + sym_primary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_update_expression, + sym_yield_expression, + [18] = + sym_array_pattern, + sym_identifier, + sym_member_expression, + sym_object_pattern, + sym_rest_pattern, + sym_subscript_expression, + sym_undefined, + [25] = + sym_array, + sym_arrow_function, + sym_call_expression, + sym_class, + sym_false, + sym_function_expression, + sym_generator_function, + sym_identifier, + sym_member_expression, + sym_meta_property, + sym_null, + sym_number, + sym_object, + sym_parenthesized_expression, + sym_regex, + sym_string, + sym_subscript_expression, + sym_super, + sym_template_string, + sym_this, + sym_true, + sym_undefined, + [47] = + sym_break_statement, + sym_continue_statement, + sym_debugger_statement, + sym_declaration, + sym_do_statement, + sym_empty_statement, + sym_export_statement, + sym_expression_statement, + sym_for_in_statement, + sym_for_statement, + sym_if_statement, + sym_import_statement, + sym_labeled_statement, + sym_return_statement, + sym_statement_block, + sym_switch_statement, + sym_throw_statement, + sym_try_statement, + sym_while_statement, + sym_with_statement, }; -static TSCharacterRange extras_character_set_1[] = { +static const TSCharacterRange extras_character_set_1[] = { {'\t', '\r'}, {' ', ' '}, {0xa0, 0xa0}, {0x1680, 0x1680}, {0x2000, 0x200b}, {0x2028, 0x2029}, {0x202f, 0x202f}, {0x205f, 0x2060}, {0x3000, 0x3000}, {0xfeff, 0xfeff}, }; -static TSCharacterRange sym_identifier_character_set_1[] = { +static const TSCharacterRange sym_identifier_character_set_1[] = { {'$', '$'}, {'A', 'Z'}, {'\\', '\\'}, {'_', '_'}, {'a', 'z'}, {0x7f, 0x9f}, {0xa1, 0x167f}, {0x1681, 0x1fff}, {0x200c, 0x2027}, {0x202a, 0x202e}, {0x2030, 0x205e}, {0x2061, 0x2fff}, {0x3001, 0xfefe}, {0xff00, 0x10ffff}, }; -static TSCharacterRange sym_identifier_character_set_2[] = { +static const TSCharacterRange sym_identifier_character_set_2[] = { {'$', '$'}, {'0', '9'}, {'A', 'Z'}, {'\\', '\\'}, {'_', '_'}, {'a', 'z'}, {0x7f, 0x9f}, {0xa1, 0x167f}, {0x1681, 0x1fff}, {0x200c, 0x2027}, {0x202a, 0x202e}, {0x2030, 0x205e}, {0x2061, 0x2fff}, {0x3001, 0xfefe}, {0xff00, 0x10ffff}, }; @@ -4190,7 +4493,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( '!', 226, '"', 159, - '#', 3, + '#', 4, '$', 273, '%', 214, '&', 201, @@ -4240,41 +4543,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(255); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(127); - if (lookahead == '\\') ADVANCE(81); - if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(276); - END_STATE(); - case 4: ADVANCE_MAP( - '!', 225, + '!', 226, '"', 159, '#', 75, + '%', 214, + '&', 201, '\'', 160, '(', 134, - '*', 128, - '+', 207, + ')', 136, + '*', 129, + '+', 208, ',', 132, - '-', 209, - '.', 27, - '/', 211, + '-', 210, + '.', 156, + '/', 212, '0', 258, + ':', 137, ';', 135, - '<', 145, + '<', 148, + '=', 140, + '>', 151, + '?', 28, '@', 277, '[', 142, '\\', 82, + ']', 143, + '^', 204, '`', 251, - 's', 271, '{', 131, + '|', 205, '}', 133, '~', 227, ); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); - if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(4); - if (lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - (lookahead < '[' || '^' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(275); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(3); + if (lookahead > '#') ADVANCE(275); + END_STATE(); + case 4: + if (lookahead == '!') ADVANCE(127); + if (lookahead == '\\') ADVANCE(81); + if (set_contains(sym_identifier_character_set_1, 14, lookahead)) ADVANCE(276); END_STATE(); case 5: ADVANCE_MAP( @@ -4283,19 +4592,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '#', 75, '\'', 160, '(', 134, + '*', 128, '+', 207, + ',', 132, '-', 209, - '.', 156, + '.', 27, '/', 211, '0', 258, - ':', 137, + ';', 135, '<', 145, - '>', 150, '@', 277, '[', 142, '\\', 82, '`', 251, + 's', 271, '{', 131, + '}', 133, '~', 227, ); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); @@ -4307,40 +4619,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 6: ADVANCE_MAP( - '!', 73, + '!', 225, '"', 159, '#', 75, - '%', 214, - '&', 201, '\'', 160, '(', 134, - ')', 136, - '*', 129, - '+', 208, - ',', 132, - '-', 210, + '+', 207, + '-', 209, '.', 156, - '/', 212, + '/', 211, '0', 258, ':', 137, - ';', 135, - '<', 148, - '=', 140, - '>', 151, - '?', 28, + '<', 145, + '>', 150, '@', 277, '[', 142, '\\', 82, - ']', 143, - '^', 204, '`', 251, '{', 131, - '|', 205, - '}', 133, + '~', 227, ); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(259); if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(6); if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && (lookahead < '{' || '~' < lookahead)) ADVANCE(275); END_STATE(); case 7: @@ -5016,7 +5319,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( '!', 226, '"', 159, - '#', 3, + '#', 4, '$', 273, '%', 214, '&', 201, @@ -5096,7 +5399,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( '!', 225, '"', 159, - '#', 3, + '#', 4, '\'', 160, '(', 134, ')', 136, @@ -6014,553 +6317,566 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { END_STATE(); case 16: if (lookahead == 'n') ADVANCE(53); + if (lookahead == 's') ADVANCE(54); END_STATE(); case 17: - if (lookahead == 'a') ADVANCE(54); - if (lookahead == 'o') ADVANCE(55); + if (lookahead == 'a') ADVANCE(55); + if (lookahead == 'o') ADVANCE(56); END_STATE(); case 18: - if (lookahead == 'h') ADVANCE(56); - if (lookahead == 'i') ADVANCE(57); + if (lookahead == 'h') ADVANCE(57); + if (lookahead == 'i') ADVANCE(58); END_STATE(); case 19: - if (lookahead == 'i') ADVANCE(58); + if (lookahead == 'i') ADVANCE(59); END_STATE(); case 20: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 'y') ADVANCE(59); + if (lookahead == 'y') ADVANCE(60); END_STATE(); case 21: - if (lookahead == 'a') ADVANCE(60); + if (lookahead == 'a') ADVANCE(61); END_STATE(); case 22: - if (lookahead == 'e') ADVANCE(61); + if (lookahead == 'e') ADVANCE(62); END_STATE(); case 23: - if (lookahead == 's') ADVANCE(62); - if (lookahead == 't') ADVANCE(63); + if (lookahead == 's') ADVANCE(63); + if (lookahead == 't') ADVANCE(64); END_STATE(); case 24: - if (lookahead == 'a') ADVANCE(64); + if (lookahead == 'a') ADVANCE(65); END_STATE(); case 25: - if (lookahead == 'n') ADVANCE(65); + if (lookahead == 'n') ADVANCE(66); END_STATE(); case 26: - if (lookahead == 'b') ADVANCE(66); - if (lookahead == 'f') ADVANCE(67); - if (lookahead == 'l') ADVANCE(68); + if (lookahead == 'b') ADVANCE(67); + if (lookahead == 'f') ADVANCE(68); + if (lookahead == 'l') ADVANCE(69); END_STATE(); case 27: ACCEPT_TOKEN(anon_sym_do); END_STATE(); case 28: - if (lookahead == 's') ADVANCE(69); + if (lookahead == 's') ADVANCE(70); END_STATE(); case 29: - if (lookahead == 'p') ADVANCE(70); - if (lookahead == 't') ADVANCE(71); + if (lookahead == 'p') ADVANCE(71); + if (lookahead == 't') ADVANCE(72); END_STATE(); case 30: - if (lookahead == 'l') ADVANCE(72); + if (lookahead == 'l') ADVANCE(73); END_STATE(); case 31: - if (lookahead == 'n') ADVANCE(73); + if (lookahead == 'n') ADVANCE(74); END_STATE(); case 32: - if (lookahead == 'r') ADVANCE(74); + if (lookahead == 'r') ADVANCE(75); END_STATE(); case 33: - if (lookahead == 'o') ADVANCE(75); + if (lookahead == 'o') ADVANCE(76); END_STATE(); case 34: - if (lookahead == 'n') ADVANCE(76); + if (lookahead == 'n') ADVANCE(77); END_STATE(); case 35: - if (lookahead == 't') ADVANCE(77); + if (lookahead == 't') ADVANCE(78); END_STATE(); case 36: ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 37: - if (lookahead == 'p') ADVANCE(78); + if (lookahead == 'p') ADVANCE(79); END_STATE(); case 38: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 's') ADVANCE(79); + if (lookahead == 's') ADVANCE(80); END_STATE(); case 39: - if (lookahead == 't') ADVANCE(80); + if (lookahead == 't') ADVANCE(81); END_STATE(); case 40: - if (lookahead == 't') ADVANCE(81); + if (lookahead == 't') ADVANCE(82); END_STATE(); case 41: - if (lookahead == 'w') ADVANCE(82); + if (lookahead == 'w') ADVANCE(83); END_STATE(); case 42: - if (lookahead == 'l') ADVANCE(83); + if (lookahead == 'l') ADVANCE(84); END_STATE(); case 43: ACCEPT_TOKEN(anon_sym_of); END_STATE(); case 44: - if (lookahead == 't') ADVANCE(84); + if (lookahead == 't') ADVANCE(85); END_STATE(); case 45: - if (lookahead == 't') ADVANCE(85); + if (lookahead == 't') ADVANCE(86); END_STATE(); case 46: - if (lookahead == 'a') ADVANCE(86); + if (lookahead == 'a') ADVANCE(87); END_STATE(); case 47: - if (lookahead == 'p') ADVANCE(87); + if (lookahead == 'p') ADVANCE(88); END_STATE(); case 48: - if (lookahead == 'i') ADVANCE(88); + if (lookahead == 'i') ADVANCE(89); END_STATE(); case 49: - if (lookahead == 'r') ADVANCE(89); + if (lookahead == 'r') ADVANCE(90); END_STATE(); case 50: - if (lookahead == 'i') ADVANCE(90); - if (lookahead == 'r') ADVANCE(91); + if (lookahead == 'i') ADVANCE(91); + if (lookahead == 'r') ADVANCE(92); END_STATE(); case 51: - if (lookahead == 'u') ADVANCE(92); - if (lookahead == 'y') ADVANCE(93); + if (lookahead == 'u') ADVANCE(93); + if (lookahead == 'y') ADVANCE(94); END_STATE(); case 52: - if (lookahead == 'p') ADVANCE(94); + if (lookahead == 'p') ADVANCE(95); END_STATE(); case 53: - if (lookahead == 'd') ADVANCE(95); + if (lookahead == 'd') ADVANCE(96); END_STATE(); case 54: - if (lookahead == 'r') ADVANCE(96); + if (lookahead == 'i') ADVANCE(97); END_STATE(); case 55: - if (lookahead == 'i') ADVANCE(97); + if (lookahead == 'r') ADVANCE(98); END_STATE(); case 56: - if (lookahead == 'i') ADVANCE(98); + if (lookahead == 'i') ADVANCE(99); END_STATE(); case 57: - if (lookahead == 't') ADVANCE(99); + if (lookahead == 'i') ADVANCE(100); END_STATE(); case 58: - if (lookahead == 'e') ADVANCE(100); + if (lookahead == 't') ADVANCE(101); END_STATE(); case 59: - if (lookahead == 'n') ADVANCE(101); + if (lookahead == 'e') ADVANCE(102); END_STATE(); case 60: - if (lookahead == 'i') ADVANCE(102); + if (lookahead == 'n') ADVANCE(103); END_STATE(); case 61: - if (lookahead == 'a') ADVANCE(103); + if (lookahead == 'i') ADVANCE(104); END_STATE(); case 62: - if (lookahead == 'e') ADVANCE(104); + if (lookahead == 'a') ADVANCE(105); END_STATE(); case 63: - if (lookahead == 'c') ADVANCE(105); + if (lookahead == 'e') ADVANCE(106); END_STATE(); case 64: - if (lookahead == 's') ADVANCE(106); + if (lookahead == 'c') ADVANCE(107); END_STATE(); case 65: - if (lookahead == 's') ADVANCE(107); - if (lookahead == 't') ADVANCE(108); + if (lookahead == 's') ADVANCE(108); END_STATE(); case 66: - if (lookahead == 'u') ADVANCE(109); + if (lookahead == 's') ADVANCE(109); + if (lookahead == 't') ADVANCE(110); END_STATE(); case 67: - if (lookahead == 'a') ADVANCE(110); + if (lookahead == 'u') ADVANCE(111); END_STATE(); case 68: - if (lookahead == 'e') ADVANCE(111); + if (lookahead == 'a') ADVANCE(112); END_STATE(); case 69: - if (lookahead == 'e') ADVANCE(112); + if (lookahead == 'e') ADVANCE(113); END_STATE(); case 70: - if (lookahead == 'o') ADVANCE(113); + if (lookahead == 'e') ADVANCE(114); END_STATE(); case 71: - if (lookahead == 'e') ADVANCE(114); + if (lookahead == 'o') ADVANCE(115); END_STATE(); case 72: - if (lookahead == 's') ADVANCE(115); + if (lookahead == 'e') ADVANCE(116); END_STATE(); case 73: - if (lookahead == 'a') ADVANCE(116); + if (lookahead == 's') ADVANCE(117); END_STATE(); case 74: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'a') ADVANCE(118); END_STATE(); case 75: - if (lookahead == 'm') ADVANCE(117); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 76: - if (lookahead == 'c') ADVANCE(118); + if (lookahead == 'm') ADVANCE(119); END_STATE(); case 77: - ACCEPT_TOKEN(anon_sym_get); + if (lookahead == 'c') ADVANCE(120); END_STATE(); case 78: - if (lookahead == 'o') ADVANCE(119); + ACCEPT_TOKEN(anon_sym_get); END_STATE(); case 79: - if (lookahead == 't') ADVANCE(120); + if (lookahead == 'o') ADVANCE(121); END_STATE(); case 80: - ACCEPT_TOKEN(anon_sym_let); + if (lookahead == 't') ADVANCE(122); END_STATE(); case 81: - if (lookahead == 'a') ADVANCE(121); + ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 82: - ACCEPT_TOKEN(anon_sym_new); + if (lookahead == 'a') ADVANCE(123); END_STATE(); case 83: - if (lookahead == 'l') ADVANCE(122); + ACCEPT_TOKEN(anon_sym_new); END_STATE(); case 84: - if (lookahead == 'u') ADVANCE(123); + if (lookahead == 'l') ADVANCE(124); END_STATE(); case 85: - ACCEPT_TOKEN(anon_sym_set); + if (lookahead == 'u') ADVANCE(125); END_STATE(); case 86: - if (lookahead == 't') ADVANCE(124); + ACCEPT_TOKEN(anon_sym_set); END_STATE(); case 87: - if (lookahead == 'e') ADVANCE(125); + if (lookahead == 't') ADVANCE(126); END_STATE(); case 88: - if (lookahead == 't') ADVANCE(126); + if (lookahead == 'e') ADVANCE(127); END_STATE(); case 89: - if (lookahead == 'g') ADVANCE(127); + if (lookahead == 't') ADVANCE(128); END_STATE(); case 90: - if (lookahead == 's') ADVANCE(128); + if (lookahead == 'g') ADVANCE(129); END_STATE(); case 91: - if (lookahead == 'o') ADVANCE(129); + if (lookahead == 's') ADVANCE(130); END_STATE(); case 92: - if (lookahead == 'e') ADVANCE(130); + if (lookahead == 'o') ADVANCE(131); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_try); + if (lookahead == 'e') ADVANCE(132); END_STATE(); case 94: - if (lookahead == 'e') ADVANCE(131); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 95: - if (lookahead == 'e') ADVANCE(132); + if (lookahead == 'e') ADVANCE(133); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_var); + if (lookahead == 'e') ADVANCE(134); END_STATE(); case 97: - if (lookahead == 'd') ADVANCE(133); + if (lookahead == 'n') ADVANCE(135); END_STATE(); case 98: - if (lookahead == 'l') ADVANCE(134); + ACCEPT_TOKEN(anon_sym_var); END_STATE(); case 99: - if (lookahead == 'h') ADVANCE(135); + if (lookahead == 'd') ADVANCE(136); END_STATE(); case 100: - if (lookahead == 'l') ADVANCE(136); + if (lookahead == 'l') ADVANCE(137); END_STATE(); case 101: - if (lookahead == 'c') ADVANCE(137); + if (lookahead == 'h') ADVANCE(138); END_STATE(); case 102: - if (lookahead == 't') ADVANCE(138); + if (lookahead == 'l') ADVANCE(139); END_STATE(); case 103: - if (lookahead == 'k') ADVANCE(139); + if (lookahead == 'c') ADVANCE(140); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_case); + if (lookahead == 't') ADVANCE(141); END_STATE(); case 105: - if (lookahead == 'h') ADVANCE(140); + if (lookahead == 'k') ADVANCE(142); END_STATE(); case 106: - if (lookahead == 's') ADVANCE(141); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 107: - if (lookahead == 't') ADVANCE(142); + if (lookahead == 'h') ADVANCE(143); END_STATE(); case 108: - if (lookahead == 'i') ADVANCE(143); + if (lookahead == 's') ADVANCE(144); END_STATE(); case 109: - if (lookahead == 'g') ADVANCE(144); + if (lookahead == 't') ADVANCE(145); END_STATE(); case 110: - if (lookahead == 'u') ADVANCE(145); + if (lookahead == 'i') ADVANCE(146); END_STATE(); case 111: - if (lookahead == 't') ADVANCE(146); + if (lookahead == 'g') ADVANCE(147); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'u') ADVANCE(148); END_STATE(); case 113: - if (lookahead == 'r') ADVANCE(147); + if (lookahead == 't') ADVANCE(149); END_STATE(); case 114: - if (lookahead == 'n') ADVANCE(148); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 115: - if (lookahead == 'e') ADVANCE(149); + if (lookahead == 'r') ADVANCE(150); END_STATE(); case 116: - if (lookahead == 'l') ADVANCE(150); + if (lookahead == 'n') ADVANCE(151); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_from); + if (lookahead == 'e') ADVANCE(152); END_STATE(); case 118: - if (lookahead == 't') ADVANCE(151); + if (lookahead == 'l') ADVANCE(153); END_STATE(); case 119: - if (lookahead == 'r') ADVANCE(152); + ACCEPT_TOKEN(anon_sym_from); END_STATE(); case 120: - if (lookahead == 'a') ADVANCE(153); + if (lookahead == 't') ADVANCE(154); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_meta); + if (lookahead == 'r') ADVANCE(155); END_STATE(); case 122: - ACCEPT_TOKEN(sym_null); + if (lookahead == 'a') ADVANCE(156); END_STATE(); case 123: - if (lookahead == 'r') ADVANCE(154); + ACCEPT_TOKEN(anon_sym_meta); END_STATE(); case 124: - if (lookahead == 'i') ADVANCE(155); + ACCEPT_TOKEN(sym_null); END_STATE(); case 125: - if (lookahead == 'r') ADVANCE(156); + if (lookahead == 'r') ADVANCE(157); END_STATE(); case 126: - if (lookahead == 'c') ADVANCE(157); + if (lookahead == 'i') ADVANCE(158); END_STATE(); case 127: - if (lookahead == 'e') ADVANCE(158); + if (lookahead == 'r') ADVANCE(159); END_STATE(); case 128: - ACCEPT_TOKEN(sym_this); + if (lookahead == 'c') ADVANCE(160); END_STATE(); case 129: - if (lookahead == 'w') ADVANCE(159); + if (lookahead == 'e') ADVANCE(161); END_STATE(); case 130: - ACCEPT_TOKEN(sym_true); + ACCEPT_TOKEN(sym_this); END_STATE(); case 131: - if (lookahead == 'o') ADVANCE(160); + if (lookahead == 'w') ADVANCE(162); END_STATE(); case 132: - if (lookahead == 'f') ADVANCE(161); + ACCEPT_TOKEN(sym_true); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_void); + if (lookahead == 'o') ADVANCE(163); END_STATE(); case 134: - if (lookahead == 'e') ADVANCE(162); + if (lookahead == 'f') ADVANCE(164); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_with); + if (lookahead == 'g') ADVANCE(165); END_STATE(); case 136: - if (lookahead == 'd') ADVANCE(163); + ACCEPT_TOKEN(anon_sym_void); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_async); + if (lookahead == 'e') ADVANCE(166); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_await); + ACCEPT_TOKEN(anon_sym_with); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_break); + if (lookahead == 'd') ADVANCE(167); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_catch); + ACCEPT_TOKEN(anon_sym_async); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_class); + ACCEPT_TOKEN(anon_sym_await); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 143: - if (lookahead == 'n') ADVANCE(164); + ACCEPT_TOKEN(anon_sym_catch); END_STATE(); case 144: - if (lookahead == 'g') ADVANCE(165); + ACCEPT_TOKEN(anon_sym_class); END_STATE(); case 145: - if (lookahead == 'l') ADVANCE(166); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 146: - if (lookahead == 'e') ADVANCE(167); + if (lookahead == 'n') ADVANCE(168); END_STATE(); case 147: - if (lookahead == 't') ADVANCE(168); + if (lookahead == 'g') ADVANCE(169); END_STATE(); case 148: - if (lookahead == 'd') ADVANCE(169); + if (lookahead == 'l') ADVANCE(170); END_STATE(); case 149: - ACCEPT_TOKEN(sym_false); + if (lookahead == 'e') ADVANCE(171); END_STATE(); case 150: - if (lookahead == 'l') ADVANCE(170); + if (lookahead == 't') ADVANCE(172); END_STATE(); case 151: - if (lookahead == 'i') ADVANCE(171); + if (lookahead == 'd') ADVANCE(173); END_STATE(); case 152: - if (lookahead == 't') ADVANCE(172); + ACCEPT_TOKEN(sym_false); END_STATE(); case 153: - if (lookahead == 'n') ADVANCE(173); + if (lookahead == 'l') ADVANCE(174); END_STATE(); case 154: - if (lookahead == 'n') ADVANCE(174); + if (lookahead == 'i') ADVANCE(175); END_STATE(); case 155: - if (lookahead == 'c') ADVANCE(175); + if (lookahead == 't') ADVANCE(176); END_STATE(); case 156: - ACCEPT_TOKEN(sym_super); + if (lookahead == 'n') ADVANCE(177); END_STATE(); case 157: - if (lookahead == 'h') ADVANCE(176); + if (lookahead == 'n') ADVANCE(178); END_STATE(); case 158: - if (lookahead == 't') ADVANCE(177); + if (lookahead == 'c') ADVANCE(179); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_throw); + ACCEPT_TOKEN(sym_super); END_STATE(); case 160: - if (lookahead == 'f') ADVANCE(178); + if (lookahead == 'h') ADVANCE(180); END_STATE(); case 161: - if (lookahead == 'i') ADVANCE(179); + if (lookahead == 't') ADVANCE(181); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_while); + ACCEPT_TOKEN(anon_sym_throw); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_yield); + if (lookahead == 'f') ADVANCE(182); END_STATE(); case 164: - if (lookahead == 'u') ADVANCE(180); + if (lookahead == 'i') ADVANCE(183); END_STATE(); case 165: - if (lookahead == 'e') ADVANCE(181); + ACCEPT_TOKEN(anon_sym_using); END_STATE(); case 166: - if (lookahead == 't') ADVANCE(182); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 167: - ACCEPT_TOKEN(anon_sym_delete); + ACCEPT_TOKEN(anon_sym_yield); END_STATE(); case 168: - ACCEPT_TOKEN(anon_sym_export); + if (lookahead == 'u') ADVANCE(184); END_STATE(); case 169: - if (lookahead == 's') ADVANCE(183); + if (lookahead == 'e') ADVANCE(185); END_STATE(); case 170: - if (lookahead == 'y') ADVANCE(184); + if (lookahead == 't') ADVANCE(186); END_STATE(); case 171: - if (lookahead == 'o') ADVANCE(185); + ACCEPT_TOKEN(anon_sym_delete); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_import); + ACCEPT_TOKEN(anon_sym_export); END_STATE(); case 173: - if (lookahead == 'c') ADVANCE(186); + if (lookahead == 's') ADVANCE(187); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 'y') ADVANCE(188); END_STATE(); case 175: - ACCEPT_TOKEN(anon_sym_static); + if (lookahead == 'o') ADVANCE(189); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_switch); + ACCEPT_TOKEN(anon_sym_import); END_STATE(); case 177: - ACCEPT_TOKEN(anon_sym_target); + if (lookahead == 'c') ADVANCE(190); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_typeof); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 179: - if (lookahead == 'n') ADVANCE(187); + ACCEPT_TOKEN(anon_sym_static); END_STATE(); case 180: - if (lookahead == 'e') ADVANCE(188); + ACCEPT_TOKEN(anon_sym_switch); END_STATE(); case 181: - if (lookahead == 'r') ADVANCE(189); + ACCEPT_TOKEN(anon_sym_target); END_STATE(); case 182: - ACCEPT_TOKEN(anon_sym_default); + ACCEPT_TOKEN(anon_sym_typeof); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_extends); + if (lookahead == 'n') ADVANCE(191); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_finally); + if (lookahead == 'e') ADVANCE(192); END_STATE(); case 185: - if (lookahead == 'n') ADVANCE(190); + if (lookahead == 'r') ADVANCE(193); END_STATE(); case 186: - if (lookahead == 'e') ADVANCE(191); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 187: - if (lookahead == 'e') ADVANCE(192); + ACCEPT_TOKEN(anon_sym_extends); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_continue); + ACCEPT_TOKEN(anon_sym_finally); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_debugger); + if (lookahead == 'n') ADVANCE(194); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_function); + if (lookahead == 'e') ADVANCE(195); END_STATE(); case 191: - if (lookahead == 'o') ADVANCE(193); + if (lookahead == 'e') ADVANCE(196); END_STATE(); case 192: - if (lookahead == 'd') ADVANCE(194); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 193: - if (lookahead == 'f') ADVANCE(195); + ACCEPT_TOKEN(anon_sym_debugger); END_STATE(); case 194: - ACCEPT_TOKEN(sym_undefined); + ACCEPT_TOKEN(anon_sym_function); END_STATE(); case 195: + if (lookahead == 'o') ADVANCE(197); + END_STATE(); + case 196: + if (lookahead == 'd') ADVANCE(198); + END_STATE(); + case 197: + if (lookahead == 'f') ADVANCE(199); + END_STATE(); + case 198: + ACCEPT_TOKEN(sym_undefined); + END_STATE(); + case 199: ACCEPT_TOKEN(anon_sym_instanceof); END_STATE(); default: @@ -6568,615 +6884,615 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { } } -static const TSLexMode ts_lex_modes[STATE_COUNT] = { +static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 125, .external_lex_state = 2}, - [2] = {.lex_state = 4, .external_lex_state = 2}, - [3] = {.lex_state = 4, .external_lex_state = 2}, - [4] = {.lex_state = 4, .external_lex_state = 2}, - [5] = {.lex_state = 4, .external_lex_state = 2}, - [6] = {.lex_state = 4, .external_lex_state = 2}, - [7] = {.lex_state = 125, .external_lex_state = 2}, - [8] = {.lex_state = 125, .external_lex_state = 2}, - [9] = {.lex_state = 125, .external_lex_state = 2}, - [10] = {.lex_state = 125, .external_lex_state = 2}, - [11] = {.lex_state = 125, .external_lex_state = 2}, - [12] = {.lex_state = 125, .external_lex_state = 2}, - [13] = {.lex_state = 125, .external_lex_state = 2}, - [14] = {.lex_state = 125, .external_lex_state = 2}, - [15] = {.lex_state = 125, .external_lex_state = 2}, - [16] = {.lex_state = 125, .external_lex_state = 2}, - [17] = {.lex_state = 125, .external_lex_state = 2}, - [18] = {.lex_state = 125, .external_lex_state = 2}, - [19] = {.lex_state = 125, .external_lex_state = 2}, - [20] = {.lex_state = 125, .external_lex_state = 2}, - [21] = {.lex_state = 125, .external_lex_state = 2}, - [22] = {.lex_state = 125, .external_lex_state = 2}, - [23] = {.lex_state = 125, .external_lex_state = 2}, - [24] = {.lex_state = 125, .external_lex_state = 2}, - [25] = {.lex_state = 125, .external_lex_state = 2}, - [26] = {.lex_state = 125, .external_lex_state = 2}, - [27] = {.lex_state = 125, .external_lex_state = 2}, - [28] = {.lex_state = 125, .external_lex_state = 2}, - [29] = {.lex_state = 125, .external_lex_state = 2}, - [30] = {.lex_state = 125, .external_lex_state = 2}, - [31] = {.lex_state = 125, .external_lex_state = 2}, - [32] = {.lex_state = 125, .external_lex_state = 2}, - [33] = {.lex_state = 125, .external_lex_state = 2}, - [34] = {.lex_state = 125, .external_lex_state = 2}, - [35] = {.lex_state = 125, .external_lex_state = 2}, - [36] = {.lex_state = 125, .external_lex_state = 2}, - [37] = {.lex_state = 125, .external_lex_state = 2}, - [38] = {.lex_state = 125, .external_lex_state = 2}, - [39] = {.lex_state = 125, .external_lex_state = 2}, - [40] = {.lex_state = 125, .external_lex_state = 2}, - [41] = {.lex_state = 125, .external_lex_state = 2}, - [42] = {.lex_state = 125, .external_lex_state = 2}, - [43] = {.lex_state = 125, .external_lex_state = 2}, - [44] = {.lex_state = 125, .external_lex_state = 2}, - [45] = {.lex_state = 125, .external_lex_state = 2}, - [46] = {.lex_state = 125, .external_lex_state = 2}, - [47] = {.lex_state = 125, .external_lex_state = 2}, - [48] = {.lex_state = 125, .external_lex_state = 2}, - [49] = {.lex_state = 125, .external_lex_state = 2}, - [50] = {.lex_state = 125, .external_lex_state = 2}, - [51] = {.lex_state = 125, .external_lex_state = 2}, - [52] = {.lex_state = 125, .external_lex_state = 2}, - [53] = {.lex_state = 125, .external_lex_state = 2}, - [54] = {.lex_state = 125, .external_lex_state = 2}, - [55] = {.lex_state = 125, .external_lex_state = 2}, - [56] = {.lex_state = 124, .external_lex_state = 3}, - [57] = {.lex_state = 124, .external_lex_state = 4}, - [58] = {.lex_state = 124, .external_lex_state = 4}, - [59] = {.lex_state = 124, .external_lex_state = 3}, - [60] = {.lex_state = 124, .external_lex_state = 3}, - [61] = {.lex_state = 124, .external_lex_state = 4}, - [62] = {.lex_state = 124, .external_lex_state = 4}, - [63] = {.lex_state = 124, .external_lex_state = 4}, - [64] = {.lex_state = 124, .external_lex_state = 4}, - [65] = {.lex_state = 124, .external_lex_state = 4}, - [66] = {.lex_state = 124, .external_lex_state = 4}, - [67] = {.lex_state = 124, .external_lex_state = 4}, - [68] = {.lex_state = 124, .external_lex_state = 4}, - [69] = {.lex_state = 124, .external_lex_state = 4}, - [70] = {.lex_state = 124, .external_lex_state = 4}, - [71] = {.lex_state = 124, .external_lex_state = 4}, - [72] = {.lex_state = 124, .external_lex_state = 4}, - [73] = {.lex_state = 124, .external_lex_state = 4}, - [74] = {.lex_state = 124, .external_lex_state = 4}, - [75] = {.lex_state = 124, .external_lex_state = 4}, - [76] = {.lex_state = 125, .external_lex_state = 2}, - [77] = {.lex_state = 125, .external_lex_state = 2}, - [78] = {.lex_state = 125, .external_lex_state = 2}, - [79] = {.lex_state = 125, .external_lex_state = 2}, - [80] = {.lex_state = 125, .external_lex_state = 2}, - [81] = {.lex_state = 125, .external_lex_state = 2}, - [82] = {.lex_state = 125, .external_lex_state = 2}, - [83] = {.lex_state = 125, .external_lex_state = 2}, - [84] = {.lex_state = 125, .external_lex_state = 2}, - [85] = {.lex_state = 125, .external_lex_state = 2}, - [86] = {.lex_state = 125, .external_lex_state = 2}, - [87] = {.lex_state = 125, .external_lex_state = 2}, - [88] = {.lex_state = 125, .external_lex_state = 2}, - [89] = {.lex_state = 125, .external_lex_state = 2}, - [90] = {.lex_state = 125, .external_lex_state = 2}, - [91] = {.lex_state = 125, .external_lex_state = 2}, - [92] = {.lex_state = 125, .external_lex_state = 2}, - [93] = {.lex_state = 125, .external_lex_state = 2}, - [94] = {.lex_state = 125, .external_lex_state = 2}, - [95] = {.lex_state = 125, .external_lex_state = 2}, - [96] = {.lex_state = 125, .external_lex_state = 2}, - [97] = {.lex_state = 125, .external_lex_state = 2}, - [98] = {.lex_state = 125, .external_lex_state = 2}, - [99] = {.lex_state = 125, .external_lex_state = 2}, - [100] = {.lex_state = 125, .external_lex_state = 2}, - [101] = {.lex_state = 125, .external_lex_state = 2}, - [102] = {.lex_state = 125, .external_lex_state = 2}, - [103] = {.lex_state = 125, .external_lex_state = 2}, - [104] = {.lex_state = 125, .external_lex_state = 2}, - [105] = {.lex_state = 125, .external_lex_state = 2}, - [106] = {.lex_state = 125, .external_lex_state = 2}, - [107] = {.lex_state = 125, .external_lex_state = 2}, - [108] = {.lex_state = 125, .external_lex_state = 2}, - [109] = {.lex_state = 125, .external_lex_state = 5}, - [110] = {.lex_state = 125, .external_lex_state = 2}, - [111] = {.lex_state = 125, .external_lex_state = 2}, - [112] = {.lex_state = 125, .external_lex_state = 2}, - [113] = {.lex_state = 125, .external_lex_state = 2}, - [114] = {.lex_state = 125, .external_lex_state = 2}, - [115] = {.lex_state = 125, .external_lex_state = 2}, - [116] = {.lex_state = 125, .external_lex_state = 2}, - [117] = {.lex_state = 125, .external_lex_state = 2}, - [118] = {.lex_state = 125, .external_lex_state = 2}, - [119] = {.lex_state = 125, .external_lex_state = 2}, - [120] = {.lex_state = 125, .external_lex_state = 2}, - [121] = {.lex_state = 125, .external_lex_state = 2}, - [122] = {.lex_state = 125, .external_lex_state = 2}, - [123] = {.lex_state = 125, .external_lex_state = 2}, - [124] = {.lex_state = 125, .external_lex_state = 2}, - [125] = {.lex_state = 125, .external_lex_state = 2}, - [126] = {.lex_state = 125, .external_lex_state = 2}, - [127] = {.lex_state = 125, .external_lex_state = 2}, - [128] = {.lex_state = 125, .external_lex_state = 2}, - [129] = {.lex_state = 125, .external_lex_state = 2}, - [130] = {.lex_state = 125, .external_lex_state = 2}, - [131] = {.lex_state = 5, .external_lex_state = 2}, - [132] = {.lex_state = 6, .external_lex_state = 4}, - [133] = {.lex_state = 125, .external_lex_state = 2}, - [134] = {.lex_state = 6, .external_lex_state = 4}, - [135] = {.lex_state = 125, .external_lex_state = 2}, - [136] = {.lex_state = 5, .external_lex_state = 2}, - [137] = {.lex_state = 125, .external_lex_state = 2}, - [138] = {.lex_state = 6, .external_lex_state = 4}, - [139] = {.lex_state = 125, .external_lex_state = 2}, - [140] = {.lex_state = 125, .external_lex_state = 2}, - [141] = {.lex_state = 125, .external_lex_state = 2}, - [142] = {.lex_state = 125, .external_lex_state = 2}, - [143] = {.lex_state = 5, .external_lex_state = 2}, - [144] = {.lex_state = 125, .external_lex_state = 2}, - [145] = {.lex_state = 125, .external_lex_state = 2}, - [146] = {.lex_state = 125, .external_lex_state = 2}, - [147] = {.lex_state = 125, .external_lex_state = 2}, - [148] = {.lex_state = 125, .external_lex_state = 2}, - [149] = {.lex_state = 125, .external_lex_state = 2}, - [150] = {.lex_state = 125, .external_lex_state = 2}, - [151] = {.lex_state = 125, .external_lex_state = 2}, - [152] = {.lex_state = 125, .external_lex_state = 2}, - [153] = {.lex_state = 125, .external_lex_state = 2}, - [154] = {.lex_state = 125, .external_lex_state = 2}, - [155] = {.lex_state = 125, .external_lex_state = 2}, - [156] = {.lex_state = 125, .external_lex_state = 2}, - [157] = {.lex_state = 125, .external_lex_state = 2}, - [158] = {.lex_state = 125, .external_lex_state = 2}, - [159] = {.lex_state = 125, .external_lex_state = 2}, - [160] = {.lex_state = 125, .external_lex_state = 2}, - [161] = {.lex_state = 125, .external_lex_state = 2}, - [162] = {.lex_state = 5, .external_lex_state = 2}, - [163] = {.lex_state = 125, .external_lex_state = 2}, - [164] = {.lex_state = 125, .external_lex_state = 2}, - [165] = {.lex_state = 125, .external_lex_state = 2}, - [166] = {.lex_state = 125, .external_lex_state = 2}, - [167] = {.lex_state = 125, .external_lex_state = 2}, - [168] = {.lex_state = 125, .external_lex_state = 2}, - [169] = {.lex_state = 125, .external_lex_state = 2}, - [170] = {.lex_state = 125, .external_lex_state = 2}, - [171] = {.lex_state = 125, .external_lex_state = 2}, - [172] = {.lex_state = 5, .external_lex_state = 2}, - [173] = {.lex_state = 125, .external_lex_state = 2}, - [174] = {.lex_state = 125, .external_lex_state = 2}, - [175] = {.lex_state = 125, .external_lex_state = 2}, - [176] = {.lex_state = 125, .external_lex_state = 2}, - [177] = {.lex_state = 125, .external_lex_state = 2}, - [178] = {.lex_state = 125, .external_lex_state = 2}, - [179] = {.lex_state = 125, .external_lex_state = 2}, - [180] = {.lex_state = 125, .external_lex_state = 2}, - [181] = {.lex_state = 125, .external_lex_state = 2}, - [182] = {.lex_state = 125, .external_lex_state = 2}, - [183] = {.lex_state = 125, .external_lex_state = 2}, - [184] = {.lex_state = 125, .external_lex_state = 2}, - [185] = {.lex_state = 125, .external_lex_state = 2}, - [186] = {.lex_state = 125, .external_lex_state = 2}, - [187] = {.lex_state = 125, .external_lex_state = 2}, - [188] = {.lex_state = 125, .external_lex_state = 2}, - [189] = {.lex_state = 125, .external_lex_state = 2}, - [190] = {.lex_state = 125, .external_lex_state = 2}, - [191] = {.lex_state = 125, .external_lex_state = 2}, - [192] = {.lex_state = 125, .external_lex_state = 2}, - [193] = {.lex_state = 125, .external_lex_state = 2}, - [194] = {.lex_state = 125, .external_lex_state = 2}, - [195] = {.lex_state = 125, .external_lex_state = 2}, - [196] = {.lex_state = 125, .external_lex_state = 2}, - [197] = {.lex_state = 125, .external_lex_state = 2}, - [198] = {.lex_state = 125, .external_lex_state = 2}, - [199] = {.lex_state = 125, .external_lex_state = 2}, - [200] = {.lex_state = 125, .external_lex_state = 2}, - [201] = {.lex_state = 125, .external_lex_state = 2}, - [202] = {.lex_state = 125, .external_lex_state = 2}, - [203] = {.lex_state = 125, .external_lex_state = 2}, - [204] = {.lex_state = 125, .external_lex_state = 2}, - [205] = {.lex_state = 125, .external_lex_state = 2}, - [206] = {.lex_state = 125, .external_lex_state = 2}, - [207] = {.lex_state = 125, .external_lex_state = 2}, - [208] = {.lex_state = 125, .external_lex_state = 2}, - [209] = {.lex_state = 125, .external_lex_state = 2}, - [210] = {.lex_state = 125, .external_lex_state = 2}, - [211] = {.lex_state = 125, .external_lex_state = 2}, - [212] = {.lex_state = 125, .external_lex_state = 2}, - [213] = {.lex_state = 125, .external_lex_state = 2}, - [214] = {.lex_state = 125, .external_lex_state = 2}, - [215] = {.lex_state = 125, .external_lex_state = 2}, - [216] = {.lex_state = 125, .external_lex_state = 2}, - [217] = {.lex_state = 125, .external_lex_state = 2}, - [218] = {.lex_state = 125, .external_lex_state = 2}, - [219] = {.lex_state = 125, .external_lex_state = 2}, - [220] = {.lex_state = 125, .external_lex_state = 2}, - [221] = {.lex_state = 125, .external_lex_state = 2}, - [222] = {.lex_state = 125, .external_lex_state = 2}, - [223] = {.lex_state = 125, .external_lex_state = 2}, - [224] = {.lex_state = 125, .external_lex_state = 2}, - [225] = {.lex_state = 125, .external_lex_state = 2}, - [226] = {.lex_state = 125, .external_lex_state = 2}, - [227] = {.lex_state = 125, .external_lex_state = 2}, - [228] = {.lex_state = 125, .external_lex_state = 2}, - [229] = {.lex_state = 125, .external_lex_state = 2}, - [230] = {.lex_state = 125, .external_lex_state = 2}, - [231] = {.lex_state = 125, .external_lex_state = 2}, - [232] = {.lex_state = 125, .external_lex_state = 2}, - [233] = {.lex_state = 125, .external_lex_state = 2}, - [234] = {.lex_state = 125, .external_lex_state = 2}, - [235] = {.lex_state = 125, .external_lex_state = 2}, - [236] = {.lex_state = 125, .external_lex_state = 2}, - [237] = {.lex_state = 125, .external_lex_state = 2}, - [238] = {.lex_state = 125, .external_lex_state = 2}, - [239] = {.lex_state = 125, .external_lex_state = 2}, - [240] = {.lex_state = 125, .external_lex_state = 2}, - [241] = {.lex_state = 125, .external_lex_state = 2}, - [242] = {.lex_state = 125, .external_lex_state = 2}, - [243] = {.lex_state = 125, .external_lex_state = 2}, - [244] = {.lex_state = 125, .external_lex_state = 2}, - [245] = {.lex_state = 125, .external_lex_state = 2}, - [246] = {.lex_state = 125, .external_lex_state = 2}, - [247] = {.lex_state = 125, .external_lex_state = 2}, - [248] = {.lex_state = 125, .external_lex_state = 2}, - [249] = {.lex_state = 125, .external_lex_state = 2}, - [250] = {.lex_state = 125, .external_lex_state = 2}, - [251] = {.lex_state = 125, .external_lex_state = 2}, - [252] = {.lex_state = 125, .external_lex_state = 2}, - [253] = {.lex_state = 125, .external_lex_state = 2}, - [254] = {.lex_state = 125, .external_lex_state = 2}, - [255] = {.lex_state = 125, .external_lex_state = 2}, - [256] = {.lex_state = 125, .external_lex_state = 2}, - [257] = {.lex_state = 125, .external_lex_state = 2}, - [258] = {.lex_state = 125, .external_lex_state = 2}, - [259] = {.lex_state = 125, .external_lex_state = 2}, - [260] = {.lex_state = 125, .external_lex_state = 2}, - [261] = {.lex_state = 125, .external_lex_state = 2}, - [262] = {.lex_state = 125, .external_lex_state = 2}, - [263] = {.lex_state = 125, .external_lex_state = 2}, - [264] = {.lex_state = 125, .external_lex_state = 2}, - [265] = {.lex_state = 125, .external_lex_state = 2}, - [266] = {.lex_state = 125, .external_lex_state = 2}, - [267] = {.lex_state = 125, .external_lex_state = 2}, - [268] = {.lex_state = 125, .external_lex_state = 2}, - [269] = {.lex_state = 125, .external_lex_state = 2}, - [270] = {.lex_state = 125, .external_lex_state = 2}, - [271] = {.lex_state = 125, .external_lex_state = 2}, - [272] = {.lex_state = 125, .external_lex_state = 2}, - [273] = {.lex_state = 125, .external_lex_state = 2}, - [274] = {.lex_state = 125, .external_lex_state = 2}, - [275] = {.lex_state = 125, .external_lex_state = 2}, - [276] = {.lex_state = 125, .external_lex_state = 2}, - [277] = {.lex_state = 125, .external_lex_state = 2}, - [278] = {.lex_state = 125, .external_lex_state = 2}, - [279] = {.lex_state = 125, .external_lex_state = 2}, - [280] = {.lex_state = 125, .external_lex_state = 2}, - [281] = {.lex_state = 125, .external_lex_state = 2}, - [282] = {.lex_state = 125, .external_lex_state = 2}, - [283] = {.lex_state = 125, .external_lex_state = 2}, - [284] = {.lex_state = 125, .external_lex_state = 2}, - [285] = {.lex_state = 125, .external_lex_state = 2}, - [286] = {.lex_state = 125, .external_lex_state = 2}, - [287] = {.lex_state = 125, .external_lex_state = 2}, - [288] = {.lex_state = 125, .external_lex_state = 2}, - [289] = {.lex_state = 125, .external_lex_state = 2}, - [290] = {.lex_state = 125, .external_lex_state = 2}, - [291] = {.lex_state = 125, .external_lex_state = 2}, - [292] = {.lex_state = 125, .external_lex_state = 2}, - [293] = {.lex_state = 125, .external_lex_state = 2}, - [294] = {.lex_state = 125, .external_lex_state = 2}, - [295] = {.lex_state = 125, .external_lex_state = 2}, - [296] = {.lex_state = 125, .external_lex_state = 2}, - [297] = {.lex_state = 125, .external_lex_state = 2}, - [298] = {.lex_state = 6, .external_lex_state = 4}, - [299] = {.lex_state = 6, .external_lex_state = 4}, - [300] = {.lex_state = 6, .external_lex_state = 4}, - [301] = {.lex_state = 6, .external_lex_state = 4}, - [302] = {.lex_state = 6, .external_lex_state = 4}, - [303] = {.lex_state = 6, .external_lex_state = 4}, - [304] = {.lex_state = 6, .external_lex_state = 4}, - [305] = {.lex_state = 6, .external_lex_state = 4}, - [306] = {.lex_state = 6, .external_lex_state = 4}, - [307] = {.lex_state = 6, .external_lex_state = 4}, - [308] = {.lex_state = 6, .external_lex_state = 4}, - [309] = {.lex_state = 6, .external_lex_state = 3}, - [310] = {.lex_state = 6, .external_lex_state = 3}, - [311] = {.lex_state = 125, .external_lex_state = 5}, - [312] = {.lex_state = 125, .external_lex_state = 5}, - [313] = {.lex_state = 6, .external_lex_state = 4}, - [314] = {.lex_state = 6, .external_lex_state = 4}, - [315] = {.lex_state = 6, .external_lex_state = 4}, - [316] = {.lex_state = 6, .external_lex_state = 3}, - [317] = {.lex_state = 6, .external_lex_state = 4}, - [318] = {.lex_state = 6, .external_lex_state = 4}, - [319] = {.lex_state = 6, .external_lex_state = 3}, - [320] = {.lex_state = 6, .external_lex_state = 4}, - [321] = {.lex_state = 6, .external_lex_state = 4}, - [322] = {.lex_state = 6, .external_lex_state = 4}, - [323] = {.lex_state = 6, .external_lex_state = 4}, - [324] = {.lex_state = 125, .external_lex_state = 2}, - [325] = {.lex_state = 6, .external_lex_state = 3}, - [326] = {.lex_state = 125, .external_lex_state = 2}, - [327] = {.lex_state = 125, .external_lex_state = 2}, - [328] = {.lex_state = 6, .external_lex_state = 3}, - [329] = {.lex_state = 6, .external_lex_state = 3}, - [330] = {.lex_state = 6, .external_lex_state = 3}, - [331] = {.lex_state = 6, .external_lex_state = 3}, - [332] = {.lex_state = 6, .external_lex_state = 4}, - [333] = {.lex_state = 125, .external_lex_state = 2}, - [334] = {.lex_state = 6, .external_lex_state = 4}, - [335] = {.lex_state = 125, .external_lex_state = 5}, - [336] = {.lex_state = 125, .external_lex_state = 5}, - [337] = {.lex_state = 125, .external_lex_state = 5}, - [338] = {.lex_state = 125, .external_lex_state = 5}, - [339] = {.lex_state = 125, .external_lex_state = 2}, - [340] = {.lex_state = 125, .external_lex_state = 5}, - [341] = {.lex_state = 125, .external_lex_state = 5}, - [342] = {.lex_state = 125, .external_lex_state = 2}, - [343] = {.lex_state = 6, .external_lex_state = 4}, - [344] = {.lex_state = 6, .external_lex_state = 3}, - [345] = {.lex_state = 125, .external_lex_state = 2}, - [346] = {.lex_state = 125, .external_lex_state = 2}, - [347] = {.lex_state = 125, .external_lex_state = 5}, - [348] = {.lex_state = 125, .external_lex_state = 5}, - [349] = {.lex_state = 125, .external_lex_state = 5}, - [350] = {.lex_state = 125, .external_lex_state = 5}, - [351] = {.lex_state = 125, .external_lex_state = 5}, - [352] = {.lex_state = 6, .external_lex_state = 4}, - [353] = {.lex_state = 125, .external_lex_state = 5}, - [354] = {.lex_state = 125, .external_lex_state = 5}, - [355] = {.lex_state = 125, .external_lex_state = 5}, - [356] = {.lex_state = 6, .external_lex_state = 3}, - [357] = {.lex_state = 6, .external_lex_state = 3}, - [358] = {.lex_state = 125, .external_lex_state = 5}, - [359] = {.lex_state = 125, .external_lex_state = 5}, - [360] = {.lex_state = 125, .external_lex_state = 2}, - [361] = {.lex_state = 125, .external_lex_state = 2}, - [362] = {.lex_state = 125, .external_lex_state = 2}, - [363] = {.lex_state = 125, .external_lex_state = 2}, - [364] = {.lex_state = 125, .external_lex_state = 2}, - [365] = {.lex_state = 125, .external_lex_state = 2}, - [366] = {.lex_state = 125, .external_lex_state = 2}, - [367] = {.lex_state = 125, .external_lex_state = 2}, - [368] = {.lex_state = 125, .external_lex_state = 2}, - [369] = {.lex_state = 125, .external_lex_state = 2}, - [370] = {.lex_state = 125, .external_lex_state = 2}, - [371] = {.lex_state = 125, .external_lex_state = 2}, - [372] = {.lex_state = 125, .external_lex_state = 2}, - [373] = {.lex_state = 125, .external_lex_state = 2}, - [374] = {.lex_state = 125, .external_lex_state = 2}, - [375] = {.lex_state = 125, .external_lex_state = 2}, - [376] = {.lex_state = 125, .external_lex_state = 2}, - [377] = {.lex_state = 125, .external_lex_state = 2}, - [378] = {.lex_state = 125, .external_lex_state = 2}, - [379] = {.lex_state = 125, .external_lex_state = 2}, - [380] = {.lex_state = 125, .external_lex_state = 2}, - [381] = {.lex_state = 125, .external_lex_state = 2}, - [382] = {.lex_state = 125, .external_lex_state = 2}, - [383] = {.lex_state = 125, .external_lex_state = 2}, - [384] = {.lex_state = 125, .external_lex_state = 2}, - [385] = {.lex_state = 125, .external_lex_state = 2}, - [386] = {.lex_state = 125, .external_lex_state = 2}, - [387] = {.lex_state = 125, .external_lex_state = 2}, - [388] = {.lex_state = 125, .external_lex_state = 2}, - [389] = {.lex_state = 125, .external_lex_state = 2}, - [390] = {.lex_state = 125, .external_lex_state = 2}, - [391] = {.lex_state = 125, .external_lex_state = 2}, - [392] = {.lex_state = 125, .external_lex_state = 2}, - [393] = {.lex_state = 125, .external_lex_state = 2}, - [394] = {.lex_state = 125, .external_lex_state = 2}, - [395] = {.lex_state = 125, .external_lex_state = 2}, - [396] = {.lex_state = 125, .external_lex_state = 2}, - [397] = {.lex_state = 125, .external_lex_state = 2}, - [398] = {.lex_state = 125, .external_lex_state = 2}, - [399] = {.lex_state = 125, .external_lex_state = 2}, - [400] = {.lex_state = 125, .external_lex_state = 2}, - [401] = {.lex_state = 125, .external_lex_state = 2}, - [402] = {.lex_state = 125, .external_lex_state = 2}, - [403] = {.lex_state = 125, .external_lex_state = 2}, - [404] = {.lex_state = 125, .external_lex_state = 2}, - [405] = {.lex_state = 125, .external_lex_state = 2}, - [406] = {.lex_state = 125, .external_lex_state = 2}, - [407] = {.lex_state = 125, .external_lex_state = 2}, - [408] = {.lex_state = 125, .external_lex_state = 2}, - [409] = {.lex_state = 125, .external_lex_state = 2}, - [410] = {.lex_state = 6, .external_lex_state = 3}, - [411] = {.lex_state = 125, .external_lex_state = 2}, - [412] = {.lex_state = 125, .external_lex_state = 2}, - [413] = {.lex_state = 125, .external_lex_state = 2}, - [414] = {.lex_state = 125, .external_lex_state = 2}, - [415] = {.lex_state = 125, .external_lex_state = 2}, - [416] = {.lex_state = 125, .external_lex_state = 2}, - [417] = {.lex_state = 125, .external_lex_state = 2}, - [418] = {.lex_state = 125, .external_lex_state = 2}, - [419] = {.lex_state = 125, .external_lex_state = 2}, - [420] = {.lex_state = 125, .external_lex_state = 2}, - [421] = {.lex_state = 125, .external_lex_state = 2}, - [422] = {.lex_state = 125, .external_lex_state = 2}, - [423] = {.lex_state = 125, .external_lex_state = 2}, - [424] = {.lex_state = 125, .external_lex_state = 2}, - [425] = {.lex_state = 125, .external_lex_state = 2}, - [426] = {.lex_state = 6, .external_lex_state = 4}, - [427] = {.lex_state = 6, .external_lex_state = 3}, - [428] = {.lex_state = 6, .external_lex_state = 3}, - [429] = {.lex_state = 6, .external_lex_state = 3}, - [430] = {.lex_state = 6, .external_lex_state = 3}, - [431] = {.lex_state = 6, .external_lex_state = 3}, - [432] = {.lex_state = 6, .external_lex_state = 4}, - [433] = {.lex_state = 6, .external_lex_state = 3}, - [434] = {.lex_state = 6, .external_lex_state = 4}, - [435] = {.lex_state = 6, .external_lex_state = 3}, - [436] = {.lex_state = 6, .external_lex_state = 3}, - [437] = {.lex_state = 6, .external_lex_state = 4}, - [438] = {.lex_state = 6, .external_lex_state = 3}, - [439] = {.lex_state = 6, .external_lex_state = 3}, - [440] = {.lex_state = 6, .external_lex_state = 3}, - [441] = {.lex_state = 6, .external_lex_state = 3}, - [442] = {.lex_state = 6, .external_lex_state = 3}, - [443] = {.lex_state = 6, .external_lex_state = 3}, - [444] = {.lex_state = 125, .external_lex_state = 2}, - [445] = {.lex_state = 6, .external_lex_state = 4}, - [446] = {.lex_state = 6, .external_lex_state = 4}, - [447] = {.lex_state = 6, .external_lex_state = 4}, - [448] = {.lex_state = 125, .external_lex_state = 2}, - [449] = {.lex_state = 6, .external_lex_state = 4}, - [450] = {.lex_state = 6, .external_lex_state = 4}, - [451] = {.lex_state = 6, .external_lex_state = 4}, - [452] = {.lex_state = 6, .external_lex_state = 4}, - [453] = {.lex_state = 6, .external_lex_state = 4}, - [454] = {.lex_state = 6, .external_lex_state = 4}, - [455] = {.lex_state = 6, .external_lex_state = 3}, - [456] = {.lex_state = 6, .external_lex_state = 4}, - [457] = {.lex_state = 6, .external_lex_state = 4}, - [458] = {.lex_state = 6, .external_lex_state = 4}, - [459] = {.lex_state = 125, .external_lex_state = 2}, - [460] = {.lex_state = 6, .external_lex_state = 4}, - [461] = {.lex_state = 6, .external_lex_state = 4}, - [462] = {.lex_state = 125, .external_lex_state = 2}, - [463] = {.lex_state = 125, .external_lex_state = 2}, - [464] = {.lex_state = 6, .external_lex_state = 3}, - [465] = {.lex_state = 125, .external_lex_state = 2}, - [466] = {.lex_state = 6, .external_lex_state = 3}, - [467] = {.lex_state = 6, .external_lex_state = 3}, - [468] = {.lex_state = 6, .external_lex_state = 3}, - [469] = {.lex_state = 6, .external_lex_state = 3}, - [470] = {.lex_state = 6, .external_lex_state = 4}, - [471] = {.lex_state = 6, .external_lex_state = 4}, - [472] = {.lex_state = 125, .external_lex_state = 2}, - [473] = {.lex_state = 125, .external_lex_state = 2}, - [474] = {.lex_state = 125, .external_lex_state = 2}, - [475] = {.lex_state = 6, .external_lex_state = 4}, - [476] = {.lex_state = 6, .external_lex_state = 4}, - [477] = {.lex_state = 6, .external_lex_state = 4}, - [478] = {.lex_state = 6, .external_lex_state = 4}, - [479] = {.lex_state = 6, .external_lex_state = 3}, - [480] = {.lex_state = 6, .external_lex_state = 3}, - [481] = {.lex_state = 6, .external_lex_state = 4}, - [482] = {.lex_state = 6, .external_lex_state = 3}, - [483] = {.lex_state = 6, .external_lex_state = 3}, - [484] = {.lex_state = 6, .external_lex_state = 3}, - [485] = {.lex_state = 6, .external_lex_state = 3}, - [486] = {.lex_state = 6, .external_lex_state = 3}, - [487] = {.lex_state = 6, .external_lex_state = 4}, - [488] = {.lex_state = 6, .external_lex_state = 3}, - [489] = {.lex_state = 6, .external_lex_state = 3}, - [490] = {.lex_state = 6, .external_lex_state = 3}, - [491] = {.lex_state = 6, .external_lex_state = 3}, - [492] = {.lex_state = 6, .external_lex_state = 3}, - [493] = {.lex_state = 6, .external_lex_state = 3}, - [494] = {.lex_state = 6, .external_lex_state = 3}, - [495] = {.lex_state = 6, .external_lex_state = 3}, - [496] = {.lex_state = 6, .external_lex_state = 3}, - [497] = {.lex_state = 6, .external_lex_state = 3}, - [498] = {.lex_state = 6, .external_lex_state = 3}, - [499] = {.lex_state = 6, .external_lex_state = 3}, - [500] = {.lex_state = 6, .external_lex_state = 3}, - [501] = {.lex_state = 6, .external_lex_state = 3}, - [502] = {.lex_state = 6, .external_lex_state = 3}, - [503] = {.lex_state = 124, .external_lex_state = 3}, - [504] = {.lex_state = 124, .external_lex_state = 3}, - [505] = {.lex_state = 124, .external_lex_state = 4}, - [506] = {.lex_state = 124, .external_lex_state = 4}, - [507] = {.lex_state = 124, .external_lex_state = 3}, - [508] = {.lex_state = 124, .external_lex_state = 4}, - [509] = {.lex_state = 124, .external_lex_state = 3}, - [510] = {.lex_state = 124, .external_lex_state = 3}, - [511] = {.lex_state = 124, .external_lex_state = 3}, - [512] = {.lex_state = 124, .external_lex_state = 3}, - [513] = {.lex_state = 124, .external_lex_state = 3}, - [514] = {.lex_state = 7, .external_lex_state = 3}, - [515] = {.lex_state = 124, .external_lex_state = 3}, - [516] = {.lex_state = 124, .external_lex_state = 3}, - [517] = {.lex_state = 124, .external_lex_state = 3}, - [518] = {.lex_state = 124, .external_lex_state = 3}, - [519] = {.lex_state = 124, .external_lex_state = 3}, - [520] = {.lex_state = 124, .external_lex_state = 3}, - [521] = {.lex_state = 124, .external_lex_state = 3}, - [522] = {.lex_state = 124, .external_lex_state = 3}, - [523] = {.lex_state = 124, .external_lex_state = 3}, - [524] = {.lex_state = 124, .external_lex_state = 3}, - [525] = {.lex_state = 124, .external_lex_state = 3}, - [526] = {.lex_state = 124, .external_lex_state = 3}, - [527] = {.lex_state = 124, .external_lex_state = 3}, - [528] = {.lex_state = 124, .external_lex_state = 3}, - [529] = {.lex_state = 124, .external_lex_state = 3}, - [530] = {.lex_state = 124, .external_lex_state = 3}, - [531] = {.lex_state = 124, .external_lex_state = 3}, - [532] = {.lex_state = 124, .external_lex_state = 3}, - [533] = {.lex_state = 124, .external_lex_state = 3}, - [534] = {.lex_state = 124, .external_lex_state = 3}, - [535] = {.lex_state = 124, .external_lex_state = 3}, - [536] = {.lex_state = 124, .external_lex_state = 3}, - [537] = {.lex_state = 124, .external_lex_state = 3}, - [538] = {.lex_state = 124, .external_lex_state = 3}, - [539] = {.lex_state = 124, .external_lex_state = 3}, - [540] = {.lex_state = 124, .external_lex_state = 3}, - [541] = {.lex_state = 124, .external_lex_state = 3}, - [542] = {.lex_state = 124, .external_lex_state = 3}, - [543] = {.lex_state = 124, .external_lex_state = 3}, - [544] = {.lex_state = 124, .external_lex_state = 3}, - [545] = {.lex_state = 124, .external_lex_state = 3}, - [546] = {.lex_state = 124, .external_lex_state = 3}, - [547] = {.lex_state = 124, .external_lex_state = 3}, - [548] = {.lex_state = 124, .external_lex_state = 3}, - [549] = {.lex_state = 124, .external_lex_state = 3}, - [550] = {.lex_state = 124, .external_lex_state = 3}, - [551] = {.lex_state = 124, .external_lex_state = 3}, - [552] = {.lex_state = 124, .external_lex_state = 3}, - [553] = {.lex_state = 124, .external_lex_state = 3}, - [554] = {.lex_state = 124, .external_lex_state = 3}, - [555] = {.lex_state = 124, .external_lex_state = 3}, - [556] = {.lex_state = 124, .external_lex_state = 3}, - [557] = {.lex_state = 124, .external_lex_state = 3}, - [558] = {.lex_state = 124, .external_lex_state = 3}, - [559] = {.lex_state = 124, .external_lex_state = 3}, - [560] = {.lex_state = 124, .external_lex_state = 3}, - [561] = {.lex_state = 124, .external_lex_state = 3}, - [562] = {.lex_state = 124, .external_lex_state = 3}, - [563] = {.lex_state = 124, .external_lex_state = 3}, - [564] = {.lex_state = 124, .external_lex_state = 3}, - [565] = {.lex_state = 124, .external_lex_state = 3}, - [566] = {.lex_state = 124, .external_lex_state = 3}, - [567] = {.lex_state = 124, .external_lex_state = 3}, - [568] = {.lex_state = 124, .external_lex_state = 3}, - [569] = {.lex_state = 124, .external_lex_state = 3}, - [570] = {.lex_state = 124, .external_lex_state = 3}, - [571] = {.lex_state = 124, .external_lex_state = 3}, - [572] = {.lex_state = 124, .external_lex_state = 3}, - [573] = {.lex_state = 124, .external_lex_state = 3}, - [574] = {.lex_state = 124, .external_lex_state = 3}, - [575] = {.lex_state = 124, .external_lex_state = 3}, - [576] = {.lex_state = 124, .external_lex_state = 3}, - [577] = {.lex_state = 124, .external_lex_state = 3}, - [578] = {.lex_state = 124, .external_lex_state = 3}, - [579] = {.lex_state = 124, .external_lex_state = 4}, - [580] = {.lex_state = 124, .external_lex_state = 3}, - [581] = {.lex_state = 124, .external_lex_state = 3}, + [1] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2] = {.lex_state = 5, .external_lex_state = 2}, + [3] = {.lex_state = 5, .external_lex_state = 2}, + [4] = {.lex_state = 5, .external_lex_state = 2}, + [5] = {.lex_state = 5, .external_lex_state = 2}, + [6] = {.lex_state = 5, .external_lex_state = 2}, + [7] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 2}, + [8] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 2}, + [9] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 3}, + [10] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 2}, + [11] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [12] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [13] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [14] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [15] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 2}, + [16] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 2}, + [17] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [18] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [19] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [20] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [21] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [22] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [23] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [24] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [25] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [26] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [27] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [28] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [29] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 2}, + [30] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [31] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 2}, + [32] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 2}, + [33] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [34] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, + [35] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 2}, + [36] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 2}, + [37] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 2}, + [38] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 2}, + [39] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 2}, + [40] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [41] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [42] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [43] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [44] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [45] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [46] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [47] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [48] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [49] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [50] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [51] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 2}, + [52] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [53] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [54] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [55] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [56] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [57] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [58] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [59] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [60] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [61] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [62] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [63] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [64] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [65] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [66] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [67] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [68] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [69] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [70] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [71] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [72] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 2}, + [73] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, + [74] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, + [75] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, + [76] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 2}, + [77] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 2}, + [78] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 2}, + [79] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, + [80] = {.lex_state = 124, .external_lex_state = 4, .reserved_word_set_id = 2}, + [81] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 2}, + [82] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 2}, + [83] = {.lex_state = 124, .external_lex_state = 4, .reserved_word_set_id = 2}, + [84] = {.lex_state = 124, .external_lex_state = 4, .reserved_word_set_id = 2}, + [85] = {.lex_state = 124, .external_lex_state = 4, .reserved_word_set_id = 2}, + [86] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, + [87] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, + [88] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, + [89] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, + [90] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, + [91] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, + [92] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, + [93] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, + [94] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, + [95] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, + [96] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, + [97] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, + [98] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, + [99] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, + [100] = {.lex_state = 124, .external_lex_state = 3, .reserved_word_set_id = 5}, + [101] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [102] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [103] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [104] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [105] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [106] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [107] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [108] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [109] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [110] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [111] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [112] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [113] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 1}, + [114] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 6}, + [115] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [116] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [117] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [118] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [119] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [120] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [121] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [122] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [123] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [124] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [125] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [126] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [127] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [128] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [129] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [130] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [131] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [132] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [133] = {.lex_state = 3, .external_lex_state = 3}, + [134] = {.lex_state = 3, .external_lex_state = 3}, + [135] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [136] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 1}, + [137] = {.lex_state = 3, .external_lex_state = 3}, + [138] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [139] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [140] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [141] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [142] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 7}, + [143] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [144] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [145] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [146] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [147] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [148] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [149] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [150] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [151] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [152] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [153] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [154] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [155] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [156] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [157] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 7}, + [158] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [159] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [160] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [161] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [162] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [163] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [164] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [165] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [166] = {.lex_state = 3, .external_lex_state = 3}, + [167] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [168] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [169] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [170] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [171] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [172] = {.lex_state = 3, .external_lex_state = 3}, + [173] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [174] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [175] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [176] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [177] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [178] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [179] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [180] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [181] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [182] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [183] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [184] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [185] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [186] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [187] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [188] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [189] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [190] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [191] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [192] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 7}, + [193] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [194] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [195] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [196] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [197] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [198] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [199] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [200] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [201] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [202] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [203] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [204] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [205] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [206] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [207] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [208] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [209] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [210] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 7}, + [211] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [212] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [213] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [214] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [215] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [216] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [217] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [218] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [219] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [220] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [221] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [222] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [223] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [224] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [225] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [226] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [227] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [228] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [229] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [230] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [231] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [232] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [233] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [234] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [235] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [236] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [237] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [238] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [239] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [240] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [241] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [242] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [243] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [244] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [245] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [246] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [247] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [248] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [249] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [250] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [251] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [252] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [253] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [254] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [255] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [256] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [257] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [258] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [259] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [260] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [261] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [262] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [263] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [264] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [265] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [266] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [267] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [268] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [269] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [270] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [271] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [272] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [273] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [274] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [275] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [276] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [277] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [278] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [279] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [280] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [281] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [282] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [283] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [284] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [285] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [286] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [287] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [288] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [289] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [290] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [291] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [292] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [293] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [294] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [295] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [296] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [297] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [298] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [299] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [300] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [301] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [302] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [303] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [304] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [305] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [306] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [307] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [308] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [309] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [310] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [311] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [312] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [313] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [314] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [315] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [316] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [317] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [318] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [319] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [320] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [321] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [322] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [323] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [324] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [325] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [326] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [327] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [328] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [329] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [330] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [331] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [332] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [333] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [334] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [335] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [336] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [337] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [338] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [339] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [340] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [341] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [342] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [343] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [344] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [345] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [346] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [347] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [348] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [349] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [350] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [351] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [352] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [353] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [354] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [355] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [356] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 7}, + [357] = {.lex_state = 3, .external_lex_state = 3}, + [358] = {.lex_state = 3, .external_lex_state = 3}, + [359] = {.lex_state = 3, .external_lex_state = 3}, + [360] = {.lex_state = 3, .external_lex_state = 3}, + [361] = {.lex_state = 3, .external_lex_state = 3}, + [362] = {.lex_state = 3, .external_lex_state = 3}, + [363] = {.lex_state = 3, .external_lex_state = 3}, + [364] = {.lex_state = 3, .external_lex_state = 3}, + [365] = {.lex_state = 3, .external_lex_state = 3}, + [366] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 8}, + [367] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 8}, + [368] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 9}, + [369] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 10}, + [370] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 9}, + [371] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 8}, + [372] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 8}, + [373] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 1}, + [374] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 10}, + [375] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 8}, + [376] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 8}, + [377] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 8}, + [378] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 8}, + [379] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 8}, + [380] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 9}, + [381] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 10}, + [382] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 8}, + [383] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, + [384] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 10}, + [385] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 10}, + [386] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 8}, + [387] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, + [388] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 8}, + [389] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [390] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 8}, + [391] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, + [392] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, + [393] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, + [394] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, + [395] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, + [396] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 9}, + [397] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 9}, + [398] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, + [399] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, + [400] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, + [401] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [402] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, + [403] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, + [404] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, + [405] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, + [406] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 8}, + [407] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 11}, + [408] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, + [409] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, + [410] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 8}, + [411] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [412] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 8}, + [413] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, + [414] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, + [415] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, + [416] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 12}, + [417] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, + [418] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [419] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [420] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [421] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [422] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [423] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [424] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [425] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [426] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [427] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [428] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [429] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [430] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [431] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [432] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [433] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [434] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [435] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [436] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [437] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [438] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [439] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [440] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [441] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [442] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [443] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [444] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [445] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [446] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [447] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [448] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [449] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [450] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [451] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [452] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [453] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [454] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [455] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [456] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [457] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [458] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [459] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [460] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [461] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [462] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [463] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [464] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [465] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [466] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [467] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [468] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [469] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [470] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [471] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [472] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [473] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [474] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [475] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [476] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [477] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [478] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [479] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [480] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [481] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [482] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [483] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [484] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [485] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [486] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [487] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 12}, + [488] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, + [489] = {.lex_state = 3, .external_lex_state = 3, .reserved_word_set_id = 9}, + [490] = {.lex_state = 3, .external_lex_state = 3}, + [491] = {.lex_state = 3, .external_lex_state = 4}, + [492] = {.lex_state = 3, .external_lex_state = 3}, + [493] = {.lex_state = 3, .external_lex_state = 4}, + [494] = {.lex_state = 3, .external_lex_state = 4}, + [495] = {.lex_state = 3, .external_lex_state = 4}, + [496] = {.lex_state = 3, .external_lex_state = 4}, + [497] = {.lex_state = 3, .external_lex_state = 4}, + [498] = {.lex_state = 3, .external_lex_state = 4}, + [499] = {.lex_state = 3, .external_lex_state = 3}, + [500] = {.lex_state = 3, .external_lex_state = 4}, + [501] = {.lex_state = 3, .external_lex_state = 4}, + [502] = {.lex_state = 3, .external_lex_state = 4}, + [503] = {.lex_state = 3, .external_lex_state = 4}, + [504] = {.lex_state = 3, .external_lex_state = 4}, + [505] = {.lex_state = 3, .external_lex_state = 4, .reserved_word_set_id = 1}, + [506] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [507] = {.lex_state = 3, .external_lex_state = 4}, + [508] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [509] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [510] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [511] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [512] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [513] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [514] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [515] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [516] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [517] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [518] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [519] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [520] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [521] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [522] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [523] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [524] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 4}, + [525] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [526] = {.lex_state = 3, .external_lex_state = 3}, + [527] = {.lex_state = 3, .external_lex_state = 3}, + [528] = {.lex_state = 3, .external_lex_state = 3}, + [529] = {.lex_state = 3, .external_lex_state = 3}, + [530] = {.lex_state = 3, .external_lex_state = 3}, + [531] = {.lex_state = 3, .external_lex_state = 3}, + [532] = {.lex_state = 3, .external_lex_state = 4}, + [533] = {.lex_state = 3, .external_lex_state = 4}, + [534] = {.lex_state = 3, .external_lex_state = 3}, + [535] = {.lex_state = 3, .external_lex_state = 3}, + [536] = {.lex_state = 3, .external_lex_state = 4}, + [537] = {.lex_state = 3, .external_lex_state = 3}, + [538] = {.lex_state = 3, .external_lex_state = 3}, + [539] = {.lex_state = 3, .external_lex_state = 4}, + [540] = {.lex_state = 3, .external_lex_state = 4}, + [541] = {.lex_state = 3, .external_lex_state = 3}, + [542] = {.lex_state = 3, .external_lex_state = 3}, + [543] = {.lex_state = 3, .external_lex_state = 3}, + [544] = {.lex_state = 3, .external_lex_state = 3}, + [545] = {.lex_state = 3, .external_lex_state = 3}, + [546] = {.lex_state = 3, .external_lex_state = 3}, + [547] = {.lex_state = 3, .external_lex_state = 3}, + [548] = {.lex_state = 3, .external_lex_state = 3}, + [549] = {.lex_state = 3, .external_lex_state = 4}, + [550] = {.lex_state = 3, .external_lex_state = 3}, + [551] = {.lex_state = 3, .external_lex_state = 3}, + [552] = {.lex_state = 3, .external_lex_state = 3}, + [553] = {.lex_state = 3, .external_lex_state = 4}, + [554] = {.lex_state = 3, .external_lex_state = 4}, + [555] = {.lex_state = 3, .external_lex_state = 4}, + [556] = {.lex_state = 3, .external_lex_state = 4}, + [557] = {.lex_state = 3, .external_lex_state = 4}, + [558] = {.lex_state = 3, .external_lex_state = 4}, + [559] = {.lex_state = 3, .external_lex_state = 4}, + [560] = {.lex_state = 3, .external_lex_state = 3}, + [561] = {.lex_state = 3, .external_lex_state = 4}, + [562] = {.lex_state = 3, .external_lex_state = 4}, + [563] = {.lex_state = 3, .external_lex_state = 4}, + [564] = {.lex_state = 3, .external_lex_state = 4}, + [565] = {.lex_state = 3, .external_lex_state = 4}, + [566] = {.lex_state = 3, .external_lex_state = 4}, + [567] = {.lex_state = 3, .external_lex_state = 4}, + [568] = {.lex_state = 3, .external_lex_state = 4}, + [569] = {.lex_state = 3, .external_lex_state = 4}, + [570] = {.lex_state = 3, .external_lex_state = 4}, + [571] = {.lex_state = 3, .external_lex_state = 4}, + [572] = {.lex_state = 3, .external_lex_state = 4}, + [573] = {.lex_state = 3, .external_lex_state = 4}, + [574] = {.lex_state = 3, .external_lex_state = 4}, + [575] = {.lex_state = 3, .external_lex_state = 4}, + [576] = {.lex_state = 3, .external_lex_state = 4}, + [577] = {.lex_state = 3, .external_lex_state = 4}, + [578] = {.lex_state = 3, .external_lex_state = 4}, + [579] = {.lex_state = 3, .external_lex_state = 4}, + [580] = {.lex_state = 3, .external_lex_state = 4}, + [581] = {.lex_state = 124, .external_lex_state = 4}, [582] = {.lex_state = 124, .external_lex_state = 3}, - [583] = {.lex_state = 124, .external_lex_state = 3}, - [584] = {.lex_state = 124, .external_lex_state = 4}, - [585] = {.lex_state = 124, .external_lex_state = 3}, + [583] = {.lex_state = 124, .external_lex_state = 4}, + [584] = {.lex_state = 124, .external_lex_state = 3}, + [585] = {.lex_state = 124, .external_lex_state = 4}, [586] = {.lex_state = 124, .external_lex_state = 3}, - [587] = {.lex_state = 124, .external_lex_state = 3}, - [588] = {.lex_state = 124, .external_lex_state = 3}, - [589] = {.lex_state = 124, .external_lex_state = 3}, - [590] = {.lex_state = 124, .external_lex_state = 3}, - [591] = {.lex_state = 124, .external_lex_state = 3}, - [592] = {.lex_state = 124, .external_lex_state = 3}, - [593] = {.lex_state = 124, .external_lex_state = 3}, - [594] = {.lex_state = 124, .external_lex_state = 3}, - [595] = {.lex_state = 124, .external_lex_state = 3}, - [596] = {.lex_state = 124, .external_lex_state = 3}, - [597] = {.lex_state = 124, .external_lex_state = 3}, - [598] = {.lex_state = 124, .external_lex_state = 3}, - [599] = {.lex_state = 124, .external_lex_state = 3}, - [600] = {.lex_state = 124, .external_lex_state = 3}, - [601] = {.lex_state = 124, .external_lex_state = 3}, - [602] = {.lex_state = 124, .external_lex_state = 3}, - [603] = {.lex_state = 124, .external_lex_state = 3}, + [587] = {.lex_state = 124, .external_lex_state = 4}, + [588] = {.lex_state = 124, .external_lex_state = 4}, + [589] = {.lex_state = 124, .external_lex_state = 4}, + [590] = {.lex_state = 124, .external_lex_state = 4}, + [591] = {.lex_state = 124, .external_lex_state = 4}, + [592] = {.lex_state = 124, .external_lex_state = 4}, + [593] = {.lex_state = 124, .external_lex_state = 4}, + [594] = {.lex_state = 124, .external_lex_state = 4}, + [595] = {.lex_state = 124, .external_lex_state = 4}, + [596] = {.lex_state = 124, .external_lex_state = 4}, + [597] = {.lex_state = 124, .external_lex_state = 4}, + [598] = {.lex_state = 7, .external_lex_state = 4}, + [599] = {.lex_state = 124, .external_lex_state = 4}, + [600] = {.lex_state = 124, .external_lex_state = 4}, + [601] = {.lex_state = 124, .external_lex_state = 4}, + [602] = {.lex_state = 124, .external_lex_state = 4}, + [603] = {.lex_state = 124, .external_lex_state = 4}, [604] = {.lex_state = 124, .external_lex_state = 4}, [605] = {.lex_state = 124, .external_lex_state = 4}, [606] = {.lex_state = 124, .external_lex_state = 4}, - [607] = {.lex_state = 124, .external_lex_state = 3}, + [607] = {.lex_state = 124, .external_lex_state = 4}, [608] = {.lex_state = 124, .external_lex_state = 4}, [609] = {.lex_state = 124, .external_lex_state = 4}, [610] = {.lex_state = 124, .external_lex_state = 4}, @@ -7201,7 +7517,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [629] = {.lex_state = 124, .external_lex_state = 4}, [630] = {.lex_state = 124, .external_lex_state = 4}, [631] = {.lex_state = 124, .external_lex_state = 4}, - [632] = {.lex_state = 124, .external_lex_state = 3}, + [632] = {.lex_state = 124, .external_lex_state = 4}, [633] = {.lex_state = 124, .external_lex_state = 4}, [634] = {.lex_state = 124, .external_lex_state = 4}, [635] = {.lex_state = 124, .external_lex_state = 4}, @@ -7214,7 +7530,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [642] = {.lex_state = 124, .external_lex_state = 4}, [643] = {.lex_state = 124, .external_lex_state = 4}, [644] = {.lex_state = 124, .external_lex_state = 4}, - [645] = {.lex_state = 124, .external_lex_state = 3}, + [645] = {.lex_state = 124, .external_lex_state = 4}, [646] = {.lex_state = 124, .external_lex_state = 4}, [647] = {.lex_state = 124, .external_lex_state = 4}, [648] = {.lex_state = 124, .external_lex_state = 4}, @@ -7226,7 +7542,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [654] = {.lex_state = 124, .external_lex_state = 4}, [655] = {.lex_state = 124, .external_lex_state = 4}, [656] = {.lex_state = 124, .external_lex_state = 4}, - [657] = {.lex_state = 124, .external_lex_state = 4}, + [657] = {.lex_state = 124, .external_lex_state = 3}, [658] = {.lex_state = 124, .external_lex_state = 4}, [659] = {.lex_state = 124, .external_lex_state = 4}, [660] = {.lex_state = 124, .external_lex_state = 4}, @@ -7234,13 +7550,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [662] = {.lex_state = 124, .external_lex_state = 4}, [663] = {.lex_state = 124, .external_lex_state = 4}, [664] = {.lex_state = 124, .external_lex_state = 4}, - [665] = {.lex_state = 7, .external_lex_state = 4}, + [665] = {.lex_state = 124, .external_lex_state = 4}, [666] = {.lex_state = 124, .external_lex_state = 4}, - [667] = {.lex_state = 124, .external_lex_state = 3}, - [668] = {.lex_state = 124, .external_lex_state = 3}, - [669] = {.lex_state = 124, .external_lex_state = 3}, + [667] = {.lex_state = 124, .external_lex_state = 4}, + [668] = {.lex_state = 124, .external_lex_state = 4}, + [669] = {.lex_state = 124, .external_lex_state = 4}, [670] = {.lex_state = 124, .external_lex_state = 4}, - [671] = {.lex_state = 124, .external_lex_state = 3}, + [671] = {.lex_state = 124, .external_lex_state = 4}, [672] = {.lex_state = 124, .external_lex_state = 4}, [673] = {.lex_state = 124, .external_lex_state = 4}, [674] = {.lex_state = 124, .external_lex_state = 4}, @@ -7250,75 +7566,75 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [678] = {.lex_state = 124, .external_lex_state = 4}, [679] = {.lex_state = 124, .external_lex_state = 4}, [680] = {.lex_state = 124, .external_lex_state = 4}, - [681] = {.lex_state = 124, .external_lex_state = 4}, - [682] = {.lex_state = 7, .external_lex_state = 4}, - [683] = {.lex_state = 124, .external_lex_state = 4}, - [684] = {.lex_state = 124, .external_lex_state = 4}, - [685] = {.lex_state = 124, .external_lex_state = 4}, - [686] = {.lex_state = 124, .external_lex_state = 4}, - [687] = {.lex_state = 124, .external_lex_state = 4}, - [688] = {.lex_state = 124, .external_lex_state = 4}, - [689] = {.lex_state = 124, .external_lex_state = 4}, + [681] = {.lex_state = 124, .external_lex_state = 3}, + [682] = {.lex_state = 124, .external_lex_state = 3}, + [683] = {.lex_state = 124, .external_lex_state = 3}, + [684] = {.lex_state = 124, .external_lex_state = 3}, + [685] = {.lex_state = 124, .external_lex_state = 3}, + [686] = {.lex_state = 124, .external_lex_state = 3}, + [687] = {.lex_state = 124, .external_lex_state = 3}, + [688] = {.lex_state = 124, .external_lex_state = 3}, + [689] = {.lex_state = 124, .external_lex_state = 3}, [690] = {.lex_state = 124, .external_lex_state = 4}, - [691] = {.lex_state = 124, .external_lex_state = 4}, - [692] = {.lex_state = 124, .external_lex_state = 4}, - [693] = {.lex_state = 124, .external_lex_state = 4}, - [694] = {.lex_state = 124, .external_lex_state = 4}, - [695] = {.lex_state = 124, .external_lex_state = 4}, - [696] = {.lex_state = 124, .external_lex_state = 4}, - [697] = {.lex_state = 124, .external_lex_state = 4}, - [698] = {.lex_state = 124, .external_lex_state = 4}, - [699] = {.lex_state = 124, .external_lex_state = 4}, - [700] = {.lex_state = 124, .external_lex_state = 4}, - [701] = {.lex_state = 124, .external_lex_state = 4}, - [702] = {.lex_state = 124, .external_lex_state = 4}, - [703] = {.lex_state = 124, .external_lex_state = 4}, - [704] = {.lex_state = 124, .external_lex_state = 4}, - [705] = {.lex_state = 124, .external_lex_state = 4}, - [706] = {.lex_state = 124, .external_lex_state = 4}, - [707] = {.lex_state = 124, .external_lex_state = 4}, - [708] = {.lex_state = 124, .external_lex_state = 4}, - [709] = {.lex_state = 124, .external_lex_state = 4}, - [710] = {.lex_state = 124, .external_lex_state = 4}, - [711] = {.lex_state = 124, .external_lex_state = 4}, - [712] = {.lex_state = 124, .external_lex_state = 4}, - [713] = {.lex_state = 124, .external_lex_state = 4}, - [714] = {.lex_state = 124, .external_lex_state = 4}, - [715] = {.lex_state = 124, .external_lex_state = 4}, - [716] = {.lex_state = 124, .external_lex_state = 4}, - [717] = {.lex_state = 124, .external_lex_state = 4}, - [718] = {.lex_state = 124, .external_lex_state = 4}, - [719] = {.lex_state = 124, .external_lex_state = 4}, - [720] = {.lex_state = 124, .external_lex_state = 4}, - [721] = {.lex_state = 124, .external_lex_state = 4}, - [722] = {.lex_state = 124, .external_lex_state = 4}, - [723] = {.lex_state = 124, .external_lex_state = 4}, - [724] = {.lex_state = 124, .external_lex_state = 4}, - [725] = {.lex_state = 124, .external_lex_state = 4}, - [726] = {.lex_state = 124, .external_lex_state = 4}, - [727] = {.lex_state = 124, .external_lex_state = 4}, - [728] = {.lex_state = 124, .external_lex_state = 4}, - [729] = {.lex_state = 124, .external_lex_state = 4}, + [691] = {.lex_state = 124, .external_lex_state = 3}, + [692] = {.lex_state = 124, .external_lex_state = 3}, + [693] = {.lex_state = 124, .external_lex_state = 3}, + [694] = {.lex_state = 124, .external_lex_state = 3}, + [695] = {.lex_state = 124, .external_lex_state = 3}, + [696] = {.lex_state = 124, .external_lex_state = 3}, + [697] = {.lex_state = 124, .external_lex_state = 3}, + [698] = {.lex_state = 124, .external_lex_state = 3}, + [699] = {.lex_state = 124, .external_lex_state = 3}, + [700] = {.lex_state = 124, .external_lex_state = 3}, + [701] = {.lex_state = 7, .external_lex_state = 3}, + [702] = {.lex_state = 124, .external_lex_state = 3}, + [703] = {.lex_state = 124, .external_lex_state = 3}, + [704] = {.lex_state = 124, .external_lex_state = 3}, + [705] = {.lex_state = 124, .external_lex_state = 3}, + [706] = {.lex_state = 124, .external_lex_state = 3}, + [707] = {.lex_state = 124, .external_lex_state = 3}, + [708] = {.lex_state = 124, .external_lex_state = 3}, + [709] = {.lex_state = 124, .external_lex_state = 3}, + [710] = {.lex_state = 124, .external_lex_state = 3}, + [711] = {.lex_state = 124, .external_lex_state = 3}, + [712] = {.lex_state = 124, .external_lex_state = 3}, + [713] = {.lex_state = 124, .external_lex_state = 3}, + [714] = {.lex_state = 124, .external_lex_state = 3}, + [715] = {.lex_state = 124, .external_lex_state = 3}, + [716] = {.lex_state = 124, .external_lex_state = 3}, + [717] = {.lex_state = 124, .external_lex_state = 3}, + [718] = {.lex_state = 124, .external_lex_state = 3}, + [719] = {.lex_state = 124, .external_lex_state = 3}, + [720] = {.lex_state = 124, .external_lex_state = 3}, + [721] = {.lex_state = 124, .external_lex_state = 3}, + [722] = {.lex_state = 124, .external_lex_state = 3}, + [723] = {.lex_state = 124, .external_lex_state = 3}, + [724] = {.lex_state = 124, .external_lex_state = 3}, + [725] = {.lex_state = 124, .external_lex_state = 3}, + [726] = {.lex_state = 124, .external_lex_state = 3}, + [727] = {.lex_state = 124, .external_lex_state = 3}, + [728] = {.lex_state = 124, .external_lex_state = 3}, + [729] = {.lex_state = 124, .external_lex_state = 3}, [730] = {.lex_state = 124, .external_lex_state = 4}, [731] = {.lex_state = 124, .external_lex_state = 4}, - [732] = {.lex_state = 124, .external_lex_state = 4}, + [732] = {.lex_state = 124, .external_lex_state = 3}, [733] = {.lex_state = 124, .external_lex_state = 4}, - [734] = {.lex_state = 124, .external_lex_state = 4}, + [734] = {.lex_state = 124, .external_lex_state = 3}, [735] = {.lex_state = 124, .external_lex_state = 3}, - [736] = {.lex_state = 124, .external_lex_state = 4}, + [736] = {.lex_state = 124, .external_lex_state = 3}, [737] = {.lex_state = 124, .external_lex_state = 3}, - [738] = {.lex_state = 124, .external_lex_state = 4}, + [738] = {.lex_state = 124, .external_lex_state = 3}, [739] = {.lex_state = 124, .external_lex_state = 3}, [740] = {.lex_state = 124, .external_lex_state = 3}, [741] = {.lex_state = 124, .external_lex_state = 3}, [742] = {.lex_state = 124, .external_lex_state = 3}, - [743] = {.lex_state = 124, .external_lex_state = 4}, + [743] = {.lex_state = 124, .external_lex_state = 3}, [744] = {.lex_state = 124, .external_lex_state = 3}, - [745] = {.lex_state = 124, .external_lex_state = 4}, - [746] = {.lex_state = 124, .external_lex_state = 4}, - [747] = {.lex_state = 124, .external_lex_state = 4}, - [748] = {.lex_state = 124, .external_lex_state = 4}, - [749] = {.lex_state = 124, .external_lex_state = 4}, + [745] = {.lex_state = 124, .external_lex_state = 3}, + [746] = {.lex_state = 124, .external_lex_state = 3}, + [747] = {.lex_state = 124, .external_lex_state = 3}, + [748] = {.lex_state = 124, .external_lex_state = 3}, + [749] = {.lex_state = 124, .external_lex_state = 3}, [750] = {.lex_state = 124, .external_lex_state = 3}, [751] = {.lex_state = 124, .external_lex_state = 3}, [752] = {.lex_state = 124, .external_lex_state = 3}, @@ -7327,14 +7643,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [755] = {.lex_state = 124, .external_lex_state = 3}, [756] = {.lex_state = 124, .external_lex_state = 3}, [757] = {.lex_state = 124, .external_lex_state = 3}, - [758] = {.lex_state = 124, .external_lex_state = 4}, + [758] = {.lex_state = 124, .external_lex_state = 3}, [759] = {.lex_state = 124, .external_lex_state = 3}, [760] = {.lex_state = 124, .external_lex_state = 3}, - [761] = {.lex_state = 124, .external_lex_state = 3}, + [761] = {.lex_state = 124, .external_lex_state = 4}, [762] = {.lex_state = 124, .external_lex_state = 3}, [763] = {.lex_state = 124, .external_lex_state = 3}, [764] = {.lex_state = 124, .external_lex_state = 3}, - [765] = {.lex_state = 124, .external_lex_state = 3}, + [765] = {.lex_state = 124, .external_lex_state = 4}, [766] = {.lex_state = 124, .external_lex_state = 3}, [767] = {.lex_state = 124, .external_lex_state = 3}, [768] = {.lex_state = 124, .external_lex_state = 3}, @@ -7364,7 +7680,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [792] = {.lex_state = 124, .external_lex_state = 3}, [793] = {.lex_state = 124, .external_lex_state = 3}, [794] = {.lex_state = 124, .external_lex_state = 3}, - [795] = {.lex_state = 124, .external_lex_state = 3}, + [795] = {.lex_state = 7, .external_lex_state = 3}, [796] = {.lex_state = 124, .external_lex_state = 3}, [797] = {.lex_state = 124, .external_lex_state = 3}, [798] = {.lex_state = 124, .external_lex_state = 3}, @@ -7373,7 +7689,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [801] = {.lex_state = 124, .external_lex_state = 3}, [802] = {.lex_state = 124, .external_lex_state = 3}, [803] = {.lex_state = 124, .external_lex_state = 3}, - [804] = {.lex_state = 124, .external_lex_state = 3}, + [804] = {.lex_state = 124, .external_lex_state = 4}, [805] = {.lex_state = 124, .external_lex_state = 3}, [806] = {.lex_state = 124, .external_lex_state = 3}, [807] = {.lex_state = 124, .external_lex_state = 3}, @@ -7381,186 +7697,186 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [809] = {.lex_state = 124, .external_lex_state = 3}, [810] = {.lex_state = 124, .external_lex_state = 3}, [811] = {.lex_state = 124, .external_lex_state = 3}, - [812] = {.lex_state = 124, .external_lex_state = 3}, + [812] = {.lex_state = 124, .external_lex_state = 4}, [813] = {.lex_state = 124, .external_lex_state = 3}, [814] = {.lex_state = 124, .external_lex_state = 3}, - [815] = {.lex_state = 124, .external_lex_state = 4}, + [815] = {.lex_state = 124, .external_lex_state = 3}, [816] = {.lex_state = 124, .external_lex_state = 3}, - [817] = {.lex_state = 124, .external_lex_state = 3}, + [817] = {.lex_state = 124, .external_lex_state = 4}, [818] = {.lex_state = 124, .external_lex_state = 3}, - [819] = {.lex_state = 124, .external_lex_state = 3}, - [820] = {.lex_state = 124, .external_lex_state = 3}, + [819] = {.lex_state = 124, .external_lex_state = 4}, + [820] = {.lex_state = 124, .external_lex_state = 4}, [821] = {.lex_state = 124, .external_lex_state = 3}, - [822] = {.lex_state = 7, .external_lex_state = 3}, - [823] = {.lex_state = 4, .external_lex_state = 2}, - [824] = {.lex_state = 4, .external_lex_state = 2}, + [822] = {.lex_state = 124, .external_lex_state = 3}, + [823] = {.lex_state = 124, .external_lex_state = 3}, + [824] = {.lex_state = 124, .external_lex_state = 4}, [825] = {.lex_state = 124, .external_lex_state = 4}, - [826] = {.lex_state = 4, .external_lex_state = 2}, - [827] = {.lex_state = 4, .external_lex_state = 2}, - [828] = {.lex_state = 4, .external_lex_state = 2}, - [829] = {.lex_state = 4, .external_lex_state = 2}, - [830] = {.lex_state = 124, .external_lex_state = 3}, + [826] = {.lex_state = 124, .external_lex_state = 3}, + [827] = {.lex_state = 124, .external_lex_state = 4}, + [828] = {.lex_state = 5, .external_lex_state = 2}, + [829] = {.lex_state = 124, .external_lex_state = 4}, + [830] = {.lex_state = 124, .external_lex_state = 4}, [831] = {.lex_state = 124, .external_lex_state = 4}, - [832] = {.lex_state = 124, .external_lex_state = 3}, - [833] = {.lex_state = 124, .external_lex_state = 3}, - [834] = {.lex_state = 124, .external_lex_state = 3}, - [835] = {.lex_state = 124, .external_lex_state = 3}, - [836] = {.lex_state = 124, .external_lex_state = 3}, - [837] = {.lex_state = 124, .external_lex_state = 3}, - [838] = {.lex_state = 124, .external_lex_state = 3}, - [839] = {.lex_state = 124, .external_lex_state = 3}, - [840] = {.lex_state = 124, .external_lex_state = 3}, - [841] = {.lex_state = 124, .external_lex_state = 3}, - [842] = {.lex_state = 124, .external_lex_state = 3}, - [843] = {.lex_state = 124, .external_lex_state = 3}, - [844] = {.lex_state = 124, .external_lex_state = 3}, - [845] = {.lex_state = 124, .external_lex_state = 3}, - [846] = {.lex_state = 124, .external_lex_state = 3}, - [847] = {.lex_state = 124, .external_lex_state = 3}, + [832] = {.lex_state = 124, .external_lex_state = 4}, + [833] = {.lex_state = 124, .external_lex_state = 4}, + [834] = {.lex_state = 124, .external_lex_state = 4}, + [835] = {.lex_state = 124, .external_lex_state = 4}, + [836] = {.lex_state = 124, .external_lex_state = 4}, + [837] = {.lex_state = 124, .external_lex_state = 4}, + [838] = {.lex_state = 124, .external_lex_state = 4}, + [839] = {.lex_state = 124, .external_lex_state = 4}, + [840] = {.lex_state = 124, .external_lex_state = 4}, + [841] = {.lex_state = 124, .external_lex_state = 4}, + [842] = {.lex_state = 124, .external_lex_state = 4}, + [843] = {.lex_state = 124, .external_lex_state = 4}, + [844] = {.lex_state = 124, .external_lex_state = 4}, + [845] = {.lex_state = 124, .external_lex_state = 4}, + [846] = {.lex_state = 124, .external_lex_state = 4}, + [847] = {.lex_state = 124, .external_lex_state = 4}, [848] = {.lex_state = 124, .external_lex_state = 3}, - [849] = {.lex_state = 124, .external_lex_state = 3}, - [850] = {.lex_state = 124, .external_lex_state = 3}, - [851] = {.lex_state = 124, .external_lex_state = 3}, - [852] = {.lex_state = 124, .external_lex_state = 3}, - [853] = {.lex_state = 124, .external_lex_state = 3}, - [854] = {.lex_state = 124, .external_lex_state = 3}, + [849] = {.lex_state = 124, .external_lex_state = 4}, + [850] = {.lex_state = 124, .external_lex_state = 4}, + [851] = {.lex_state = 124, .external_lex_state = 4}, + [852] = {.lex_state = 124, .external_lex_state = 4}, + [853] = {.lex_state = 124, .external_lex_state = 4}, + [854] = {.lex_state = 124, .external_lex_state = 4}, [855] = {.lex_state = 124, .external_lex_state = 3}, - [856] = {.lex_state = 124, .external_lex_state = 3}, - [857] = {.lex_state = 124, .external_lex_state = 3}, - [858] = {.lex_state = 124, .external_lex_state = 3}, - [859] = {.lex_state = 124, .external_lex_state = 3}, - [860] = {.lex_state = 124, .external_lex_state = 3}, - [861] = {.lex_state = 124, .external_lex_state = 3}, - [862] = {.lex_state = 124, .external_lex_state = 3}, - [863] = {.lex_state = 124, .external_lex_state = 3}, - [864] = {.lex_state = 124, .external_lex_state = 3}, - [865] = {.lex_state = 124, .external_lex_state = 3}, - [866] = {.lex_state = 4, .external_lex_state = 2}, - [867] = {.lex_state = 124, .external_lex_state = 3}, - [868] = {.lex_state = 124, .external_lex_state = 3}, - [869] = {.lex_state = 4, .external_lex_state = 2}, - [870] = {.lex_state = 4, .external_lex_state = 2}, - [871] = {.lex_state = 4, .external_lex_state = 2}, - [872] = {.lex_state = 4, .external_lex_state = 2}, - [873] = {.lex_state = 4, .external_lex_state = 2}, - [874] = {.lex_state = 4, .external_lex_state = 2}, - [875] = {.lex_state = 4, .external_lex_state = 2}, - [876] = {.lex_state = 4, .external_lex_state = 2}, - [877] = {.lex_state = 125, .external_lex_state = 2}, - [878] = {.lex_state = 125, .external_lex_state = 2}, - [879] = {.lex_state = 4, .external_lex_state = 2}, - [880] = {.lex_state = 125, .external_lex_state = 2}, - [881] = {.lex_state = 125, .external_lex_state = 2}, - [882] = {.lex_state = 125, .external_lex_state = 2}, - [883] = {.lex_state = 125, .external_lex_state = 2}, - [884] = {.lex_state = 125, .external_lex_state = 2}, - [885] = {.lex_state = 125, .external_lex_state = 2}, - [886] = {.lex_state = 125, .external_lex_state = 2}, - [887] = {.lex_state = 125, .external_lex_state = 2}, - [888] = {.lex_state = 125, .external_lex_state = 2}, - [889] = {.lex_state = 125, .external_lex_state = 2}, - [890] = {.lex_state = 125, .external_lex_state = 2}, - [891] = {.lex_state = 125, .external_lex_state = 2}, - [892] = {.lex_state = 125, .external_lex_state = 2}, - [893] = {.lex_state = 125, .external_lex_state = 2}, - [894] = {.lex_state = 125, .external_lex_state = 2}, - [895] = {.lex_state = 125, .external_lex_state = 5}, - [896] = {.lex_state = 125, .external_lex_state = 2}, - [897] = {.lex_state = 125, .external_lex_state = 2}, - [898] = {.lex_state = 125, .external_lex_state = 2}, - [899] = {.lex_state = 125, .external_lex_state = 2}, - [900] = {.lex_state = 125, .external_lex_state = 2}, - [901] = {.lex_state = 125, .external_lex_state = 2}, - [902] = {.lex_state = 125, .external_lex_state = 2}, - [903] = {.lex_state = 4, .external_lex_state = 2}, - [904] = {.lex_state = 125, .external_lex_state = 2}, - [905] = {.lex_state = 125, .external_lex_state = 2}, - [906] = {.lex_state = 125, .external_lex_state = 5}, - [907] = {.lex_state = 125, .external_lex_state = 5}, - [908] = {.lex_state = 125, .external_lex_state = 5}, - [909] = {.lex_state = 125, .external_lex_state = 2}, - [910] = {.lex_state = 4, .external_lex_state = 2}, - [911] = {.lex_state = 125, .external_lex_state = 5}, - [912] = {.lex_state = 125, .external_lex_state = 2}, - [913] = {.lex_state = 125, .external_lex_state = 5}, - [914] = {.lex_state = 125, .external_lex_state = 2}, - [915] = {.lex_state = 4, .external_lex_state = 2}, - [916] = {.lex_state = 125, .external_lex_state = 5}, - [917] = {.lex_state = 9, .external_lex_state = 2}, - [918] = {.lex_state = 125, .external_lex_state = 5}, - [919] = {.lex_state = 125, .external_lex_state = 5}, - [920] = {.lex_state = 125, .external_lex_state = 5}, - [921] = {.lex_state = 125, .external_lex_state = 5}, - [922] = {.lex_state = 125, .external_lex_state = 2}, - [923] = {.lex_state = 125, .external_lex_state = 5}, - [924] = {.lex_state = 4, .external_lex_state = 2}, - [925] = {.lex_state = 4, .external_lex_state = 2}, - [926] = {.lex_state = 4, .external_lex_state = 2}, - [927] = {.lex_state = 4, .external_lex_state = 2}, - [928] = {.lex_state = 4, .external_lex_state = 2}, - [929] = {.lex_state = 9, .external_lex_state = 2}, - [930] = {.lex_state = 4, .external_lex_state = 2}, - [931] = {.lex_state = 4, .external_lex_state = 2}, - [932] = {.lex_state = 4, .external_lex_state = 2}, - [933] = {.lex_state = 4, .external_lex_state = 2}, - [934] = {.lex_state = 4, .external_lex_state = 2}, - [935] = {.lex_state = 4, .external_lex_state = 2}, - [936] = {.lex_state = 4, .external_lex_state = 2}, - [937] = {.lex_state = 4, .external_lex_state = 2}, - [938] = {.lex_state = 4, .external_lex_state = 2}, - [939] = {.lex_state = 4, .external_lex_state = 2}, - [940] = {.lex_state = 4, .external_lex_state = 2}, - [941] = {.lex_state = 4, .external_lex_state = 2}, - [942] = {.lex_state = 4, .external_lex_state = 2}, - [943] = {.lex_state = 4, .external_lex_state = 2}, - [944] = {.lex_state = 4, .external_lex_state = 2}, - [945] = {.lex_state = 4, .external_lex_state = 2}, - [946] = {.lex_state = 4, .external_lex_state = 2}, - [947] = {.lex_state = 4, .external_lex_state = 2}, - [948] = {.lex_state = 4, .external_lex_state = 5}, - [949] = {.lex_state = 4, .external_lex_state = 2}, - [950] = {.lex_state = 4, .external_lex_state = 2}, - [951] = {.lex_state = 4, .external_lex_state = 2}, - [952] = {.lex_state = 4, .external_lex_state = 2}, - [953] = {.lex_state = 4, .external_lex_state = 5}, - [954] = {.lex_state = 4, .external_lex_state = 2}, - [955] = {.lex_state = 4, .external_lex_state = 2}, - [956] = {.lex_state = 4, .external_lex_state = 2}, - [957] = {.lex_state = 4, .external_lex_state = 2}, - [958] = {.lex_state = 4, .external_lex_state = 2}, - [959] = {.lex_state = 125, .external_lex_state = 2}, - [960] = {.lex_state = 125, .external_lex_state = 2}, - [961] = {.lex_state = 125, .external_lex_state = 2}, - [962] = {.lex_state = 4, .external_lex_state = 2}, - [963] = {.lex_state = 4, .external_lex_state = 2}, - [964] = {.lex_state = 125, .external_lex_state = 2}, - [965] = {.lex_state = 125, .external_lex_state = 2}, - [966] = {.lex_state = 125, .external_lex_state = 2}, - [967] = {.lex_state = 125, .external_lex_state = 2}, - [968] = {.lex_state = 125, .external_lex_state = 2}, - [969] = {.lex_state = 4, .external_lex_state = 2}, - [970] = {.lex_state = 125, .external_lex_state = 2}, - [971] = {.lex_state = 4, .external_lex_state = 2}, - [972] = {.lex_state = 125, .external_lex_state = 2}, - [973] = {.lex_state = 125, .external_lex_state = 2}, - [974] = {.lex_state = 125, .external_lex_state = 2}, - [975] = {.lex_state = 125, .external_lex_state = 2}, - [976] = {.lex_state = 4, .external_lex_state = 2}, - [977] = {.lex_state = 125, .external_lex_state = 2}, - [978] = {.lex_state = 125, .external_lex_state = 2}, - [979] = {.lex_state = 125, .external_lex_state = 2}, - [980] = {.lex_state = 125, .external_lex_state = 2}, - [981] = {.lex_state = 125, .external_lex_state = 2}, - [982] = {.lex_state = 125, .external_lex_state = 2}, - [983] = {.lex_state = 125, .external_lex_state = 2}, - [984] = {.lex_state = 125, .external_lex_state = 2}, - [985] = {.lex_state = 125, .external_lex_state = 2}, + [856] = {.lex_state = 5, .external_lex_state = 2}, + [857] = {.lex_state = 124, .external_lex_state = 4}, + [858] = {.lex_state = 124, .external_lex_state = 4}, + [859] = {.lex_state = 124, .external_lex_state = 4}, + [860] = {.lex_state = 124, .external_lex_state = 4}, + [861] = {.lex_state = 124, .external_lex_state = 4}, + [862] = {.lex_state = 124, .external_lex_state = 4}, + [863] = {.lex_state = 124, .external_lex_state = 4}, + [864] = {.lex_state = 124, .external_lex_state = 4}, + [865] = {.lex_state = 5, .external_lex_state = 2}, + [866] = {.lex_state = 124, .external_lex_state = 4}, + [867] = {.lex_state = 124, .external_lex_state = 4}, + [868] = {.lex_state = 5, .external_lex_state = 2}, + [869] = {.lex_state = 124, .external_lex_state = 4}, + [870] = {.lex_state = 5, .external_lex_state = 2}, + [871] = {.lex_state = 5, .external_lex_state = 2}, + [872] = {.lex_state = 124, .external_lex_state = 4}, + [873] = {.lex_state = 124, .external_lex_state = 4}, + [874] = {.lex_state = 124, .external_lex_state = 4}, + [875] = {.lex_state = 124, .external_lex_state = 4}, + [876] = {.lex_state = 124, .external_lex_state = 4}, + [877] = {.lex_state = 124, .external_lex_state = 4}, + [878] = {.lex_state = 124, .external_lex_state = 4}, + [879] = {.lex_state = 124, .external_lex_state = 4}, + [880] = {.lex_state = 124, .external_lex_state = 4}, + [881] = {.lex_state = 124, .external_lex_state = 4}, + [882] = {.lex_state = 124, .external_lex_state = 4}, + [883] = {.lex_state = 124, .external_lex_state = 4}, + [884] = {.lex_state = 124, .external_lex_state = 4}, + [885] = {.lex_state = 124, .external_lex_state = 4}, + [886] = {.lex_state = 124, .external_lex_state = 4}, + [887] = {.lex_state = 124, .external_lex_state = 4}, + [888] = {.lex_state = 7, .external_lex_state = 4}, + [889] = {.lex_state = 124, .external_lex_state = 3}, + [890] = {.lex_state = 124, .external_lex_state = 4}, + [891] = {.lex_state = 124, .external_lex_state = 4}, + [892] = {.lex_state = 124, .external_lex_state = 4}, + [893] = {.lex_state = 124, .external_lex_state = 4}, + [894] = {.lex_state = 124, .external_lex_state = 4}, + [895] = {.lex_state = 124, .external_lex_state = 4}, + [896] = {.lex_state = 124, .external_lex_state = 4}, + [897] = {.lex_state = 124, .external_lex_state = 4}, + [898] = {.lex_state = 124, .external_lex_state = 4}, + [899] = {.lex_state = 124, .external_lex_state = 4}, + [900] = {.lex_state = 124, .external_lex_state = 4}, + [901] = {.lex_state = 124, .external_lex_state = 4}, + [902] = {.lex_state = 124, .external_lex_state = 4}, + [903] = {.lex_state = 124, .external_lex_state = 4}, + [904] = {.lex_state = 124, .external_lex_state = 4}, + [905] = {.lex_state = 124, .external_lex_state = 4}, + [906] = {.lex_state = 124, .external_lex_state = 4}, + [907] = {.lex_state = 124, .external_lex_state = 4}, + [908] = {.lex_state = 124, .external_lex_state = 4}, + [909] = {.lex_state = 124, .external_lex_state = 4}, + [910] = {.lex_state = 124, .external_lex_state = 4}, + [911] = {.lex_state = 124, .external_lex_state = 4}, + [912] = {.lex_state = 124, .external_lex_state = 4}, + [913] = {.lex_state = 124, .external_lex_state = 4}, + [914] = {.lex_state = 124, .external_lex_state = 3}, + [915] = {.lex_state = 124, .external_lex_state = 4}, + [916] = {.lex_state = 124, .external_lex_state = 4}, + [917] = {.lex_state = 124, .external_lex_state = 4}, + [918] = {.lex_state = 124, .external_lex_state = 4}, + [919] = {.lex_state = 124, .external_lex_state = 4}, + [920] = {.lex_state = 124, .external_lex_state = 4}, + [921] = {.lex_state = 124, .external_lex_state = 4}, + [922] = {.lex_state = 124, .external_lex_state = 4}, + [923] = {.lex_state = 124, .external_lex_state = 4}, + [924] = {.lex_state = 124, .external_lex_state = 4}, + [925] = {.lex_state = 124, .external_lex_state = 4}, + [926] = {.lex_state = 124, .external_lex_state = 4}, + [927] = {.lex_state = 124, .external_lex_state = 4}, + [928] = {.lex_state = 124, .external_lex_state = 4}, + [929] = {.lex_state = 124, .external_lex_state = 4}, + [930] = {.lex_state = 124, .external_lex_state = 4}, + [931] = {.lex_state = 124, .external_lex_state = 4}, + [932] = {.lex_state = 124, .external_lex_state = 4}, + [933] = {.lex_state = 124, .external_lex_state = 4}, + [934] = {.lex_state = 124, .external_lex_state = 4}, + [935] = {.lex_state = 124, .external_lex_state = 4}, + [936] = {.lex_state = 124, .external_lex_state = 4}, + [937] = {.lex_state = 124, .external_lex_state = 4}, + [938] = {.lex_state = 124, .external_lex_state = 4}, + [939] = {.lex_state = 124, .external_lex_state = 4}, + [940] = {.lex_state = 124, .external_lex_state = 4}, + [941] = {.lex_state = 124, .external_lex_state = 4}, + [942] = {.lex_state = 124, .external_lex_state = 4}, + [943] = {.lex_state = 124, .external_lex_state = 4}, + [944] = {.lex_state = 124, .external_lex_state = 4}, + [945] = {.lex_state = 124, .external_lex_state = 4}, + [946] = {.lex_state = 124, .external_lex_state = 4}, + [947] = {.lex_state = 124, .external_lex_state = 4}, + [948] = {.lex_state = 124, .external_lex_state = 4}, + [949] = {.lex_state = 124, .external_lex_state = 4}, + [950] = {.lex_state = 124, .external_lex_state = 4}, + [951] = {.lex_state = 124, .external_lex_state = 4}, + [952] = {.lex_state = 124, .external_lex_state = 4}, + [953] = {.lex_state = 124, .external_lex_state = 4}, + [954] = {.lex_state = 124, .external_lex_state = 4}, + [955] = {.lex_state = 124, .external_lex_state = 4}, + [956] = {.lex_state = 124, .external_lex_state = 4}, + [957] = {.lex_state = 124, .external_lex_state = 4}, + [958] = {.lex_state = 124, .external_lex_state = 4}, + [959] = {.lex_state = 124, .external_lex_state = 4}, + [960] = {.lex_state = 124, .external_lex_state = 4}, + [961] = {.lex_state = 124, .external_lex_state = 4}, + [962] = {.lex_state = 124, .external_lex_state = 4}, + [963] = {.lex_state = 124, .external_lex_state = 4}, + [964] = {.lex_state = 124, .external_lex_state = 4}, + [965] = {.lex_state = 124, .external_lex_state = 4}, + [966] = {.lex_state = 124, .external_lex_state = 4}, + [967] = {.lex_state = 124, .external_lex_state = 4}, + [968] = {.lex_state = 124, .external_lex_state = 4}, + [969] = {.lex_state = 5, .external_lex_state = 2}, + [970] = {.lex_state = 124, .external_lex_state = 4}, + [971] = {.lex_state = 124, .external_lex_state = 4}, + [972] = {.lex_state = 124, .external_lex_state = 4}, + [973] = {.lex_state = 124, .external_lex_state = 4}, + [974] = {.lex_state = 124, .external_lex_state = 4}, + [975] = {.lex_state = 124, .external_lex_state = 4}, + [976] = {.lex_state = 124, .external_lex_state = 4}, + [977] = {.lex_state = 124, .external_lex_state = 4}, + [978] = {.lex_state = 124, .external_lex_state = 4}, + [979] = {.lex_state = 124, .external_lex_state = 4}, + [980] = {.lex_state = 124, .external_lex_state = 4}, + [981] = {.lex_state = 5, .external_lex_state = 2}, + [982] = {.lex_state = 5, .external_lex_state = 2}, + [983] = {.lex_state = 5, .external_lex_state = 2}, + [984] = {.lex_state = 5, .external_lex_state = 2}, + [985] = {.lex_state = 5, .external_lex_state = 2}, [986] = {.lex_state = 125, .external_lex_state = 2}, [987] = {.lex_state = 125, .external_lex_state = 2}, - [988] = {.lex_state = 125, .external_lex_state = 2}, - [989] = {.lex_state = 125, .external_lex_state = 2}, - [990] = {.lex_state = 125, .external_lex_state = 2}, - [991] = {.lex_state = 125, .external_lex_state = 2}, + [988] = {.lex_state = 5, .external_lex_state = 2}, + [989] = {.lex_state = 5, .external_lex_state = 2}, + [990] = {.lex_state = 5, .external_lex_state = 2}, + [991] = {.lex_state = 5, .external_lex_state = 2}, [992] = {.lex_state = 125, .external_lex_state = 2}, [993] = {.lex_state = 125, .external_lex_state = 2}, [994] = {.lex_state = 125, .external_lex_state = 2}, @@ -7569,489 +7885,489 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [997] = {.lex_state = 125, .external_lex_state = 2}, [998] = {.lex_state = 125, .external_lex_state = 2}, [999] = {.lex_state = 125, .external_lex_state = 2}, - [1000] = {.lex_state = 4, .external_lex_state = 2}, - [1001] = {.lex_state = 4, .external_lex_state = 2}, - [1002] = {.lex_state = 4, .external_lex_state = 2}, + [1000] = {.lex_state = 125, .external_lex_state = 2}, + [1001] = {.lex_state = 125, .external_lex_state = 2}, + [1002] = {.lex_state = 125, .external_lex_state = 2}, [1003] = {.lex_state = 125, .external_lex_state = 2}, - [1004] = {.lex_state = 4, .external_lex_state = 2}, + [1004] = {.lex_state = 125, .external_lex_state = 2}, [1005] = {.lex_state = 125, .external_lex_state = 2}, - [1006] = {.lex_state = 4, .external_lex_state = 2}, + [1006] = {.lex_state = 125, .external_lex_state = 2}, [1007] = {.lex_state = 125, .external_lex_state = 2}, [1008] = {.lex_state = 125, .external_lex_state = 2}, - [1009] = {.lex_state = 125, .external_lex_state = 2}, + [1009] = {.lex_state = 125, .external_lex_state = 5}, [1010] = {.lex_state = 125, .external_lex_state = 2}, [1011] = {.lex_state = 125, .external_lex_state = 2}, [1012] = {.lex_state = 125, .external_lex_state = 2}, [1013] = {.lex_state = 125, .external_lex_state = 2}, - [1014] = {.lex_state = 125, .external_lex_state = 2}, - [1015] = {.lex_state = 6, .external_lex_state = 2}, + [1014] = {.lex_state = 5, .external_lex_state = 2}, + [1015] = {.lex_state = 125, .external_lex_state = 2}, [1016] = {.lex_state = 125, .external_lex_state = 2}, - [1017] = {.lex_state = 125, .external_lex_state = 2}, - [1018] = {.lex_state = 6, .external_lex_state = 2}, - [1019] = {.lex_state = 6, .external_lex_state = 2}, + [1017] = {.lex_state = 125, .external_lex_state = 5}, + [1018] = {.lex_state = 125, .external_lex_state = 5}, + [1019] = {.lex_state = 5, .external_lex_state = 2}, [1020] = {.lex_state = 125, .external_lex_state = 2}, [1021] = {.lex_state = 125, .external_lex_state = 2}, - [1022] = {.lex_state = 125, .external_lex_state = 2}, - [1023] = {.lex_state = 6, .external_lex_state = 2}, + [1022] = {.lex_state = 125, .external_lex_state = 5}, + [1023] = {.lex_state = 125, .external_lex_state = 5}, [1024] = {.lex_state = 125, .external_lex_state = 2}, - [1025] = {.lex_state = 125, .external_lex_state = 2}, - [1026] = {.lex_state = 125, .external_lex_state = 2}, + [1025] = {.lex_state = 5, .external_lex_state = 2}, + [1026] = {.lex_state = 125, .external_lex_state = 5}, [1027] = {.lex_state = 125, .external_lex_state = 2}, - [1028] = {.lex_state = 125, .external_lex_state = 2}, - [1029] = {.lex_state = 6, .external_lex_state = 2}, - [1030] = {.lex_state = 125, .external_lex_state = 2}, - [1031] = {.lex_state = 124, .external_lex_state = 2}, - [1032] = {.lex_state = 9, .external_lex_state = 6}, - [1033] = {.lex_state = 9, .external_lex_state = 6}, - [1034] = {.lex_state = 31, .external_lex_state = 2}, - [1035] = {.lex_state = 9, .external_lex_state = 6}, - [1036] = {.lex_state = 31, .external_lex_state = 2}, - [1037] = {.lex_state = 9, .external_lex_state = 6}, - [1038] = {.lex_state = 9, .external_lex_state = 6}, - [1039] = {.lex_state = 9, .external_lex_state = 6}, - [1040] = {.lex_state = 31, .external_lex_state = 2}, - [1041] = {.lex_state = 9, .external_lex_state = 6}, - [1042] = {.lex_state = 31, .external_lex_state = 2}, - [1043] = {.lex_state = 9, .external_lex_state = 6}, - [1044] = {.lex_state = 31, .external_lex_state = 2}, - [1045] = {.lex_state = 9, .external_lex_state = 6}, - [1046] = {.lex_state = 31, .external_lex_state = 2}, - [1047] = {.lex_state = 31, .external_lex_state = 2}, - [1048] = {.lex_state = 31, .external_lex_state = 2}, - [1049] = {.lex_state = 31, .external_lex_state = 2}, - [1050] = {.lex_state = 31, .external_lex_state = 2}, - [1051] = {.lex_state = 31, .external_lex_state = 2}, - [1052] = {.lex_state = 31, .external_lex_state = 2}, - [1053] = {.lex_state = 125, .external_lex_state = 2}, - [1054] = {.lex_state = 31, .external_lex_state = 2}, - [1055] = {.lex_state = 31, .external_lex_state = 2}, - [1056] = {.lex_state = 125, .external_lex_state = 2}, - [1057] = {.lex_state = 31, .external_lex_state = 2}, - [1058] = {.lex_state = 31, .external_lex_state = 2}, - [1059] = {.lex_state = 31, .external_lex_state = 2}, - [1060] = {.lex_state = 31, .external_lex_state = 2}, - [1061] = {.lex_state = 31, .external_lex_state = 2}, - [1062] = {.lex_state = 31, .external_lex_state = 2}, - [1063] = {.lex_state = 31, .external_lex_state = 2}, - [1064] = {.lex_state = 31, .external_lex_state = 2}, - [1065] = {.lex_state = 31, .external_lex_state = 2}, - [1066] = {.lex_state = 31, .external_lex_state = 2}, - [1067] = {.lex_state = 31, .external_lex_state = 2}, - [1068] = {.lex_state = 31, .external_lex_state = 2}, - [1069] = {.lex_state = 31, .external_lex_state = 2}, - [1070] = {.lex_state = 31, .external_lex_state = 2}, - [1071] = {.lex_state = 31, .external_lex_state = 2}, - [1072] = {.lex_state = 31, .external_lex_state = 2}, - [1073] = {.lex_state = 31, .external_lex_state = 2}, - [1074] = {.lex_state = 31, .external_lex_state = 2}, - [1075] = {.lex_state = 31, .external_lex_state = 2}, + [1028] = {.lex_state = 125, .external_lex_state = 5}, + [1029] = {.lex_state = 125, .external_lex_state = 5}, + [1030] = {.lex_state = 125, .external_lex_state = 5}, + [1031] = {.lex_state = 125, .external_lex_state = 5}, + [1032] = {.lex_state = 125, .external_lex_state = 5}, + [1033] = {.lex_state = 125, .external_lex_state = 5}, + [1034] = {.lex_state = 9, .external_lex_state = 2}, + [1035] = {.lex_state = 125, .external_lex_state = 2}, + [1036] = {.lex_state = 125, .external_lex_state = 2}, + [1037] = {.lex_state = 5, .external_lex_state = 2}, + [1038] = {.lex_state = 125, .external_lex_state = 2}, + [1039] = {.lex_state = 5, .external_lex_state = 2}, + [1040] = {.lex_state = 5, .external_lex_state = 2}, + [1041] = {.lex_state = 5, .external_lex_state = 2}, + [1042] = {.lex_state = 5, .external_lex_state = 5}, + [1043] = {.lex_state = 9, .external_lex_state = 2}, + [1044] = {.lex_state = 5, .external_lex_state = 2}, + [1045] = {.lex_state = 5, .external_lex_state = 2}, + [1046] = {.lex_state = 5, .external_lex_state = 2}, + [1047] = {.lex_state = 5, .external_lex_state = 5}, + [1048] = {.lex_state = 5, .external_lex_state = 2}, + [1049] = {.lex_state = 5, .external_lex_state = 2}, + [1050] = {.lex_state = 5, .external_lex_state = 2}, + [1051] = {.lex_state = 5, .external_lex_state = 2}, + [1052] = {.lex_state = 5, .external_lex_state = 2}, + [1053] = {.lex_state = 5, .external_lex_state = 2}, + [1054] = {.lex_state = 5, .external_lex_state = 2}, + [1055] = {.lex_state = 5, .external_lex_state = 2}, + [1056] = {.lex_state = 5, .external_lex_state = 2}, + [1057] = {.lex_state = 5, .external_lex_state = 2}, + [1058] = {.lex_state = 5, .external_lex_state = 2}, + [1059] = {.lex_state = 5, .external_lex_state = 2}, + [1060] = {.lex_state = 5, .external_lex_state = 2}, + [1061] = {.lex_state = 5, .external_lex_state = 2}, + [1062] = {.lex_state = 5, .external_lex_state = 2}, + [1063] = {.lex_state = 5, .external_lex_state = 2}, + [1064] = {.lex_state = 5, .external_lex_state = 2}, + [1065] = {.lex_state = 5, .external_lex_state = 2}, + [1066] = {.lex_state = 5, .external_lex_state = 2}, + [1067] = {.lex_state = 125, .external_lex_state = 2}, + [1068] = {.lex_state = 5, .external_lex_state = 2}, + [1069] = {.lex_state = 5, .external_lex_state = 2}, + [1070] = {.lex_state = 5, .external_lex_state = 2}, + [1071] = {.lex_state = 5, .external_lex_state = 2}, + [1072] = {.lex_state = 125, .external_lex_state = 2}, + [1073] = {.lex_state = 5, .external_lex_state = 2}, + [1074] = {.lex_state = 125, .external_lex_state = 2}, + [1075] = {.lex_state = 5, .external_lex_state = 2}, [1076] = {.lex_state = 125, .external_lex_state = 2}, [1077] = {.lex_state = 125, .external_lex_state = 2}, - [1078] = {.lex_state = 125, .external_lex_state = 2}, + [1078] = {.lex_state = 5, .external_lex_state = 2}, [1079] = {.lex_state = 125, .external_lex_state = 2}, - [1080] = {.lex_state = 125, .external_lex_state = 2}, - [1081] = {.lex_state = 125, .external_lex_state = 2}, + [1080] = {.lex_state = 5, .external_lex_state = 2}, + [1081] = {.lex_state = 5, .external_lex_state = 2}, [1082] = {.lex_state = 125, .external_lex_state = 2}, [1083] = {.lex_state = 125, .external_lex_state = 2}, [1084] = {.lex_state = 125, .external_lex_state = 2}, - [1085] = {.lex_state = 125, .external_lex_state = 2}, + [1085] = {.lex_state = 5, .external_lex_state = 2}, [1086] = {.lex_state = 125, .external_lex_state = 2}, [1087] = {.lex_state = 125, .external_lex_state = 2}, [1088] = {.lex_state = 125, .external_lex_state = 2}, [1089] = {.lex_state = 125, .external_lex_state = 2}, [1090] = {.lex_state = 125, .external_lex_state = 2}, [1091] = {.lex_state = 125, .external_lex_state = 2}, - [1092] = {.lex_state = 125, .external_lex_state = 5}, + [1092] = {.lex_state = 125, .external_lex_state = 2}, [1093] = {.lex_state = 125, .external_lex_state = 2}, - [1094] = {.lex_state = 31, .external_lex_state = 2}, + [1094] = {.lex_state = 5, .external_lex_state = 2}, [1095] = {.lex_state = 125, .external_lex_state = 2}, [1096] = {.lex_state = 125, .external_lex_state = 2}, - [1097] = {.lex_state = 125, .external_lex_state = 2}, + [1097] = {.lex_state = 5, .external_lex_state = 2}, [1098] = {.lex_state = 125, .external_lex_state = 2}, - [1099] = {.lex_state = 125, .external_lex_state = 5}, - [1100] = {.lex_state = 125, .external_lex_state = 2}, + [1099] = {.lex_state = 125, .external_lex_state = 2}, + [1100] = {.lex_state = 5, .external_lex_state = 2}, [1101] = {.lex_state = 125, .external_lex_state = 2}, [1102] = {.lex_state = 125, .external_lex_state = 2}, [1103] = {.lex_state = 125, .external_lex_state = 2}, [1104] = {.lex_state = 125, .external_lex_state = 2}, - [1105] = {.lex_state = 31, .external_lex_state = 2}, - [1106] = {.lex_state = 16, .external_lex_state = 7}, + [1105] = {.lex_state = 125, .external_lex_state = 2}, + [1106] = {.lex_state = 5, .external_lex_state = 2}, [1107] = {.lex_state = 125, .external_lex_state = 2}, [1108] = {.lex_state = 125, .external_lex_state = 2}, - [1109] = {.lex_state = 125, .external_lex_state = 5}, - [1110] = {.lex_state = 125, .external_lex_state = 5}, - [1111] = {.lex_state = 125, .external_lex_state = 5}, + [1109] = {.lex_state = 125, .external_lex_state = 2}, + [1110] = {.lex_state = 125, .external_lex_state = 2}, + [1111] = {.lex_state = 125, .external_lex_state = 2}, [1112] = {.lex_state = 125, .external_lex_state = 2}, [1113] = {.lex_state = 125, .external_lex_state = 2}, - [1114] = {.lex_state = 125, .external_lex_state = 5}, - [1115] = {.lex_state = 16, .external_lex_state = 7}, - [1116] = {.lex_state = 125, .external_lex_state = 5}, + [1114] = {.lex_state = 125, .external_lex_state = 2}, + [1115] = {.lex_state = 125, .external_lex_state = 2}, + [1116] = {.lex_state = 125, .external_lex_state = 2}, [1117] = {.lex_state = 125, .external_lex_state = 2}, - [1118] = {.lex_state = 125, .external_lex_state = 5}, - [1119] = {.lex_state = 31, .external_lex_state = 2}, + [1118] = {.lex_state = 5, .external_lex_state = 2}, + [1119] = {.lex_state = 5, .external_lex_state = 2}, [1120] = {.lex_state = 125, .external_lex_state = 2}, - [1121] = {.lex_state = 125, .external_lex_state = 5}, - [1122] = {.lex_state = 16, .external_lex_state = 7}, - [1123] = {.lex_state = 16, .external_lex_state = 7}, - [1124] = {.lex_state = 31, .external_lex_state = 2}, + [1121] = {.lex_state = 125, .external_lex_state = 2}, + [1122] = {.lex_state = 125, .external_lex_state = 2}, + [1123] = {.lex_state = 125, .external_lex_state = 2}, + [1124] = {.lex_state = 125, .external_lex_state = 2}, [1125] = {.lex_state = 125, .external_lex_state = 2}, - [1126] = {.lex_state = 125, .external_lex_state = 5}, - [1127] = {.lex_state = 125, .external_lex_state = 5}, - [1128] = {.lex_state = 125, .external_lex_state = 5}, - [1129] = {.lex_state = 125, .external_lex_state = 5}, - [1130] = {.lex_state = 125, .external_lex_state = 5}, + [1126] = {.lex_state = 125, .external_lex_state = 2}, + [1127] = {.lex_state = 125, .external_lex_state = 2}, + [1128] = {.lex_state = 125, .external_lex_state = 2}, + [1129] = {.lex_state = 125, .external_lex_state = 2}, + [1130] = {.lex_state = 125, .external_lex_state = 2}, [1131] = {.lex_state = 125, .external_lex_state = 2}, - [1132] = {.lex_state = 16, .external_lex_state = 7}, + [1132] = {.lex_state = 125, .external_lex_state = 2}, [1133] = {.lex_state = 125, .external_lex_state = 2}, - [1134] = {.lex_state = 9, .external_lex_state = 6}, + [1134] = {.lex_state = 125, .external_lex_state = 2}, [1135] = {.lex_state = 125, .external_lex_state = 2}, - [1136] = {.lex_state = 9, .external_lex_state = 6}, - [1137] = {.lex_state = 31, .external_lex_state = 2}, - [1138] = {.lex_state = 125, .external_lex_state = 2}, - [1139] = {.lex_state = 31, .external_lex_state = 2}, - [1140] = {.lex_state = 31, .external_lex_state = 2}, - [1141] = {.lex_state = 125, .external_lex_state = 2}, - [1142] = {.lex_state = 125, .external_lex_state = 2}, - [1143] = {.lex_state = 31, .external_lex_state = 2}, - [1144] = {.lex_state = 31, .external_lex_state = 2}, - [1145] = {.lex_state = 31, .external_lex_state = 2}, + [1136] = {.lex_state = 125, .external_lex_state = 2}, + [1137] = {.lex_state = 125, .external_lex_state = 2}, + [1138] = {.lex_state = 3, .external_lex_state = 2}, + [1139] = {.lex_state = 3, .external_lex_state = 2}, + [1140] = {.lex_state = 3, .external_lex_state = 2}, + [1141] = {.lex_state = 3, .external_lex_state = 2}, + [1142] = {.lex_state = 3, .external_lex_state = 2}, + [1143] = {.lex_state = 3, .external_lex_state = 2}, + [1144] = {.lex_state = 3, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1145] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, [1146] = {.lex_state = 9, .external_lex_state = 6}, - [1147] = {.lex_state = 9, .external_lex_state = 6}, - [1148] = {.lex_state = 31, .external_lex_state = 2}, + [1147] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1148] = {.lex_state = 9, .external_lex_state = 6}, [1149] = {.lex_state = 9, .external_lex_state = 6}, [1150] = {.lex_state = 9, .external_lex_state = 6}, - [1151] = {.lex_state = 125, .external_lex_state = 2}, - [1152] = {.lex_state = 9, .external_lex_state = 6}, - [1153] = {.lex_state = 125, .external_lex_state = 2}, + [1151] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1152] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1153] = {.lex_state = 9, .external_lex_state = 6}, [1154] = {.lex_state = 9, .external_lex_state = 6}, [1155] = {.lex_state = 9, .external_lex_state = 6}, - [1156] = {.lex_state = 125, .external_lex_state = 2}, - [1157] = {.lex_state = 9, .external_lex_state = 6}, - [1158] = {.lex_state = 125, .external_lex_state = 2}, - [1159] = {.lex_state = 125, .external_lex_state = 2}, - [1160] = {.lex_state = 125, .external_lex_state = 2}, - [1161] = {.lex_state = 125, .external_lex_state = 2}, - [1162] = {.lex_state = 31, .external_lex_state = 2}, - [1163] = {.lex_state = 31, .external_lex_state = 2}, - [1164] = {.lex_state = 31, .external_lex_state = 2}, - [1165] = {.lex_state = 9, .external_lex_state = 6}, - [1166] = {.lex_state = 125, .external_lex_state = 2}, - [1167] = {.lex_state = 125, .external_lex_state = 5}, - [1168] = {.lex_state = 31, .external_lex_state = 2}, - [1169] = {.lex_state = 125, .external_lex_state = 2}, + [1156] = {.lex_state = 9, .external_lex_state = 6}, + [1157] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1158] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1159] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1160] = {.lex_state = 9, .external_lex_state = 6}, + [1161] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1162] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1163] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1164] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1165] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1166] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1167] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1168] = {.lex_state = 125, .external_lex_state = 2}, + [1169] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1170] = {.lex_state = 125, .external_lex_state = 2}, - [1171] = {.lex_state = 125, .external_lex_state = 2}, - [1172] = {.lex_state = 9, .external_lex_state = 6}, - [1173] = {.lex_state = 31, .external_lex_state = 2}, - [1174] = {.lex_state = 125, .external_lex_state = 2}, - [1175] = {.lex_state = 125, .external_lex_state = 2}, - [1176] = {.lex_state = 125, .external_lex_state = 2}, - [1177] = {.lex_state = 31, .external_lex_state = 2}, - [1178] = {.lex_state = 31, .external_lex_state = 2}, - [1179] = {.lex_state = 9, .external_lex_state = 6}, - [1180] = {.lex_state = 31, .external_lex_state = 2}, - [1181] = {.lex_state = 31, .external_lex_state = 2}, - [1182] = {.lex_state = 31, .external_lex_state = 2}, - [1183] = {.lex_state = 31, .external_lex_state = 2}, - [1184] = {.lex_state = 31, .external_lex_state = 2}, - [1185] = {.lex_state = 125, .external_lex_state = 2}, - [1186] = {.lex_state = 9, .external_lex_state = 6}, - [1187] = {.lex_state = 31, .external_lex_state = 2}, - [1188] = {.lex_state = 31, .external_lex_state = 2}, - [1189] = {.lex_state = 9, .external_lex_state = 6}, - [1190] = {.lex_state = 125, .external_lex_state = 2}, - [1191] = {.lex_state = 125, .external_lex_state = 5}, - [1192] = {.lex_state = 31, .external_lex_state = 2}, - [1193] = {.lex_state = 31, .external_lex_state = 2}, - [1194] = {.lex_state = 125, .external_lex_state = 5}, - [1195] = {.lex_state = 9, .external_lex_state = 6}, - [1196] = {.lex_state = 125, .external_lex_state = 5}, - [1197] = {.lex_state = 125, .external_lex_state = 2}, - [1198] = {.lex_state = 31, .external_lex_state = 2}, - [1199] = {.lex_state = 9, .external_lex_state = 6}, - [1200] = {.lex_state = 20, .external_lex_state = 8}, - [1201] = {.lex_state = 125, .external_lex_state = 2}, - [1202] = {.lex_state = 125, .external_lex_state = 2}, - [1203] = {.lex_state = 125, .external_lex_state = 2}, + [1171] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1172] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1173] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1174] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1175] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1176] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1177] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1178] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1179] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1180] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1181] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1182] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1183] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1184] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1185] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1186] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1187] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1188] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1189] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1190] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1191] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1192] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1193] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1194] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1195] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1196] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1197] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1198] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1199] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1200] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1201] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1202] = {.lex_state = 125, .external_lex_state = 5}, + [1203] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1204] = {.lex_state = 125, .external_lex_state = 2}, - [1205] = {.lex_state = 10, .external_lex_state = 2}, + [1205] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1206] = {.lex_state = 125, .external_lex_state = 2}, [1207] = {.lex_state = 125, .external_lex_state = 2}, - [1208] = {.lex_state = 125, .external_lex_state = 2}, - [1209] = {.lex_state = 18, .external_lex_state = 2}, + [1208] = {.lex_state = 125, .external_lex_state = 5}, + [1209] = {.lex_state = 125, .external_lex_state = 5}, [1210] = {.lex_state = 125, .external_lex_state = 2}, - [1211] = {.lex_state = 125, .external_lex_state = 5}, + [1211] = {.lex_state = 125, .external_lex_state = 2}, [1212] = {.lex_state = 125, .external_lex_state = 2}, - [1213] = {.lex_state = 10, .external_lex_state = 2}, - [1214] = {.lex_state = 12, .external_lex_state = 8}, - [1215] = {.lex_state = 125, .external_lex_state = 2}, - [1216] = {.lex_state = 125, .external_lex_state = 2}, + [1213] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1214] = {.lex_state = 125, .external_lex_state = 2}, + [1215] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1216] = {.lex_state = 125, .external_lex_state = 5}, [1217] = {.lex_state = 125, .external_lex_state = 2}, - [1218] = {.lex_state = 18, .external_lex_state = 2}, + [1218] = {.lex_state = 125, .external_lex_state = 2}, [1219] = {.lex_state = 125, .external_lex_state = 2}, [1220] = {.lex_state = 125, .external_lex_state = 2}, - [1221] = {.lex_state = 125, .external_lex_state = 2}, - [1222] = {.lex_state = 20, .external_lex_state = 8}, - [1223] = {.lex_state = 125, .external_lex_state = 5}, - [1224] = {.lex_state = 20, .external_lex_state = 8}, - [1225] = {.lex_state = 20, .external_lex_state = 8}, - [1226] = {.lex_state = 12, .external_lex_state = 8}, - [1227] = {.lex_state = 20, .external_lex_state = 8}, - [1228] = {.lex_state = 125, .external_lex_state = 2}, - [1229] = {.lex_state = 125, .external_lex_state = 2}, - [1230] = {.lex_state = 125, .external_lex_state = 2}, + [1221] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1222] = {.lex_state = 125, .external_lex_state = 2}, + [1223] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1224] = {.lex_state = 125, .external_lex_state = 2}, + [1225] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1226] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1227] = {.lex_state = 125, .external_lex_state = 5}, + [1228] = {.lex_state = 125, .external_lex_state = 5}, + [1229] = {.lex_state = 16, .external_lex_state = 7}, + [1230] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, [1231] = {.lex_state = 125, .external_lex_state = 5}, - [1232] = {.lex_state = 124, .external_lex_state = 2}, - [1233] = {.lex_state = 125, .external_lex_state = 2}, - [1234] = {.lex_state = 125, .external_lex_state = 2}, - [1235] = {.lex_state = 12, .external_lex_state = 8}, - [1236] = {.lex_state = 20, .external_lex_state = 8}, + [1232] = {.lex_state = 125, .external_lex_state = 5}, + [1233] = {.lex_state = 16, .external_lex_state = 7}, + [1234] = {.lex_state = 125, .external_lex_state = 5}, + [1235] = {.lex_state = 125, .external_lex_state = 2}, + [1236] = {.lex_state = 125, .external_lex_state = 2}, [1237] = {.lex_state = 125, .external_lex_state = 2}, - [1238] = {.lex_state = 125, .external_lex_state = 2}, - [1239] = {.lex_state = 20, .external_lex_state = 8}, - [1240] = {.lex_state = 125, .external_lex_state = 5}, - [1241] = {.lex_state = 125, .external_lex_state = 2}, - [1242] = {.lex_state = 125, .external_lex_state = 5}, + [1238] = {.lex_state = 125, .external_lex_state = 5}, + [1239] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1240] = {.lex_state = 16, .external_lex_state = 7}, + [1241] = {.lex_state = 125, .external_lex_state = 5}, + [1242] = {.lex_state = 16, .external_lex_state = 7}, [1243] = {.lex_state = 125, .external_lex_state = 2}, - [1244] = {.lex_state = 12, .external_lex_state = 8}, - [1245] = {.lex_state = 12, .external_lex_state = 8}, + [1244] = {.lex_state = 16, .external_lex_state = 7}, + [1245] = {.lex_state = 125, .external_lex_state = 5}, [1246] = {.lex_state = 125, .external_lex_state = 2}, - [1247] = {.lex_state = 12, .external_lex_state = 8}, + [1247] = {.lex_state = 125, .external_lex_state = 5}, [1248] = {.lex_state = 125, .external_lex_state = 5}, - [1249] = {.lex_state = 12, .external_lex_state = 8}, - [1250] = {.lex_state = 20, .external_lex_state = 8}, - [1251] = {.lex_state = 125, .external_lex_state = 2}, - [1252] = {.lex_state = 20, .external_lex_state = 8}, + [1249] = {.lex_state = 125, .external_lex_state = 5}, + [1250] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1251] = {.lex_state = 125, .external_lex_state = 5}, + [1252] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1253] = {.lex_state = 125, .external_lex_state = 2}, - [1254] = {.lex_state = 125, .external_lex_state = 2}, - [1255] = {.lex_state = 125, .external_lex_state = 5}, - [1256] = {.lex_state = 125, .external_lex_state = 2}, - [1257] = {.lex_state = 125, .external_lex_state = 2}, - [1258] = {.lex_state = 125, .external_lex_state = 2}, - [1259] = {.lex_state = 125, .external_lex_state = 2}, - [1260] = {.lex_state = 125, .external_lex_state = 5}, - [1261] = {.lex_state = 125, .external_lex_state = 5}, + [1254] = {.lex_state = 9, .external_lex_state = 6}, + [1255] = {.lex_state = 9, .external_lex_state = 6}, + [1256] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1257] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1258] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1259] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1260] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1261] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, [1262] = {.lex_state = 125, .external_lex_state = 2}, - [1263] = {.lex_state = 10, .external_lex_state = 2}, - [1264] = {.lex_state = 18, .external_lex_state = 2}, - [1265] = {.lex_state = 16, .external_lex_state = 7}, - [1266] = {.lex_state = 12, .external_lex_state = 8}, + [1263] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1264] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1265] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1266] = {.lex_state = 9, .external_lex_state = 6}, [1267] = {.lex_state = 125, .external_lex_state = 2}, - [1268] = {.lex_state = 125, .external_lex_state = 5}, - [1269] = {.lex_state = 12, .external_lex_state = 8}, - [1270] = {.lex_state = 125, .external_lex_state = 5}, - [1271] = {.lex_state = 125, .external_lex_state = 5}, - [1272] = {.lex_state = 124, .external_lex_state = 2}, - [1273] = {.lex_state = 125, .external_lex_state = 2}, - [1274] = {.lex_state = 125, .external_lex_state = 2}, - [1275] = {.lex_state = 125, .external_lex_state = 2}, - [1276] = {.lex_state = 125, .external_lex_state = 2}, + [1268] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1269] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1270] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1271] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1272] = {.lex_state = 9, .external_lex_state = 6}, + [1273] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1274] = {.lex_state = 125, .external_lex_state = 5}, + [1275] = {.lex_state = 9, .external_lex_state = 6}, + [1276] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, [1277] = {.lex_state = 125, .external_lex_state = 2}, - [1278] = {.lex_state = 125, .external_lex_state = 2}, - [1279] = {.lex_state = 125, .external_lex_state = 2}, + [1278] = {.lex_state = 9, .external_lex_state = 6}, + [1279] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, [1280] = {.lex_state = 125, .external_lex_state = 2}, - [1281] = {.lex_state = 125, .external_lex_state = 2}, + [1281] = {.lex_state = 9, .external_lex_state = 6}, [1282] = {.lex_state = 125, .external_lex_state = 2}, - [1283] = {.lex_state = 125, .external_lex_state = 2}, - [1284] = {.lex_state = 125, .external_lex_state = 2}, - [1285] = {.lex_state = 125, .external_lex_state = 2}, - [1286] = {.lex_state = 125, .external_lex_state = 2}, - [1287] = {.lex_state = 125, .external_lex_state = 2}, - [1288] = {.lex_state = 125, .external_lex_state = 2}, - [1289] = {.lex_state = 125, .external_lex_state = 2}, - [1290] = {.lex_state = 125, .external_lex_state = 2}, - [1291] = {.lex_state = 125, .external_lex_state = 2}, - [1292] = {.lex_state = 125, .external_lex_state = 2}, - [1293] = {.lex_state = 125, .external_lex_state = 5}, - [1294] = {.lex_state = 125, .external_lex_state = 2}, - [1295] = {.lex_state = 125, .external_lex_state = 2}, + [1283] = {.lex_state = 125, .external_lex_state = 5}, + [1284] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1285] = {.lex_state = 125, .external_lex_state = 5}, + [1286] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1287] = {.lex_state = 9, .external_lex_state = 6}, + [1288] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1289] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1290] = {.lex_state = 9, .external_lex_state = 6}, + [1291] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1292] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1293] = {.lex_state = 125, .external_lex_state = 2}, + [1294] = {.lex_state = 9, .external_lex_state = 6}, + [1295] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, [1296] = {.lex_state = 125, .external_lex_state = 2}, [1297] = {.lex_state = 125, .external_lex_state = 2}, - [1298] = {.lex_state = 125, .external_lex_state = 2}, - [1299] = {.lex_state = 125, .external_lex_state = 2}, - [1300] = {.lex_state = 125, .external_lex_state = 2}, - [1301] = {.lex_state = 125, .external_lex_state = 2}, - [1302] = {.lex_state = 125, .external_lex_state = 5}, - [1303] = {.lex_state = 125, .external_lex_state = 2}, - [1304] = {.lex_state = 125, .external_lex_state = 2}, - [1305] = {.lex_state = 5, .external_lex_state = 2}, + [1298] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 13}, + [1299] = {.lex_state = 9, .external_lex_state = 6}, + [1300] = {.lex_state = 9, .external_lex_state = 6}, + [1301] = {.lex_state = 9, .external_lex_state = 6}, + [1302] = {.lex_state = 9, .external_lex_state = 6}, + [1303] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1304] = {.lex_state = 125, .external_lex_state = 5}, + [1305] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, [1306] = {.lex_state = 125, .external_lex_state = 2}, [1307] = {.lex_state = 125, .external_lex_state = 2}, - [1308] = {.lex_state = 125, .external_lex_state = 5}, - [1309] = {.lex_state = 125, .external_lex_state = 2}, + [1308] = {.lex_state = 9, .external_lex_state = 6}, + [1309] = {.lex_state = 9, .external_lex_state = 6}, [1310] = {.lex_state = 125, .external_lex_state = 2}, - [1311] = {.lex_state = 125, .external_lex_state = 2}, - [1312] = {.lex_state = 125, .external_lex_state = 2}, - [1313] = {.lex_state = 125, .external_lex_state = 5}, - [1314] = {.lex_state = 5, .external_lex_state = 2}, - [1315] = {.lex_state = 125, .external_lex_state = 2}, - [1316] = {.lex_state = 125, .external_lex_state = 2}, - [1317] = {.lex_state = 125, .external_lex_state = 2}, - [1318] = {.lex_state = 125, .external_lex_state = 5}, - [1319] = {.lex_state = 125, .external_lex_state = 2}, - [1320] = {.lex_state = 125, .external_lex_state = 2}, - [1321] = {.lex_state = 125, .external_lex_state = 2}, + [1311] = {.lex_state = 125, .external_lex_state = 5}, + [1312] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1313] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1314] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1315] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1316] = {.lex_state = 125, .external_lex_state = 5}, + [1317] = {.lex_state = 9, .external_lex_state = 6}, + [1318] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1319] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1320] = {.lex_state = 10, .external_lex_state = 2}, + [1321] = {.lex_state = 125, .external_lex_state = 5}, [1322] = {.lex_state = 125, .external_lex_state = 2}, - [1323] = {.lex_state = 125, .external_lex_state = 2}, + [1323] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1324] = {.lex_state = 125, .external_lex_state = 2}, - [1325] = {.lex_state = 125, .external_lex_state = 2}, - [1326] = {.lex_state = 125, .external_lex_state = 2}, - [1327] = {.lex_state = 125, .external_lex_state = 5}, - [1328] = {.lex_state = 125, .external_lex_state = 2}, - [1329] = {.lex_state = 125, .external_lex_state = 5}, - [1330] = {.lex_state = 125, .external_lex_state = 2}, - [1331] = {.lex_state = 125, .external_lex_state = 5}, - [1332] = {.lex_state = 125, .external_lex_state = 2}, - [1333] = {.lex_state = 125, .external_lex_state = 2}, - [1334] = {.lex_state = 125, .external_lex_state = 2}, - [1335] = {.lex_state = 125, .external_lex_state = 2}, - [1336] = {.lex_state = 125, .external_lex_state = 2}, - [1337] = {.lex_state = 124, .external_lex_state = 2}, + [1325] = {.lex_state = 125, .external_lex_state = 5}, + [1326] = {.lex_state = 3, .external_lex_state = 2}, + [1327] = {.lex_state = 125, .external_lex_state = 2}, + [1328] = {.lex_state = 12, .external_lex_state = 8}, + [1329] = {.lex_state = 20, .external_lex_state = 8}, + [1330] = {.lex_state = 12, .external_lex_state = 8}, + [1331] = {.lex_state = 20, .external_lex_state = 8}, + [1332] = {.lex_state = 12, .external_lex_state = 8}, + [1333] = {.lex_state = 3, .external_lex_state = 2}, + [1334] = {.lex_state = 20, .external_lex_state = 8}, + [1335] = {.lex_state = 125, .external_lex_state = 5}, + [1336] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1337] = {.lex_state = 125, .external_lex_state = 2}, [1338] = {.lex_state = 125, .external_lex_state = 2}, - [1339] = {.lex_state = 125, .external_lex_state = 2}, - [1340] = {.lex_state = 124, .external_lex_state = 2}, - [1341] = {.lex_state = 125, .external_lex_state = 2}, - [1342] = {.lex_state = 125, .external_lex_state = 2}, + [1339] = {.lex_state = 12, .external_lex_state = 8}, + [1340] = {.lex_state = 125, .external_lex_state = 2}, + [1341] = {.lex_state = 125, .external_lex_state = 5}, + [1342] = {.lex_state = 125, .external_lex_state = 5}, [1343] = {.lex_state = 125, .external_lex_state = 2}, - [1344] = {.lex_state = 125, .external_lex_state = 2}, + [1344] = {.lex_state = 125, .external_lex_state = 5}, [1345] = {.lex_state = 125, .external_lex_state = 2}, [1346] = {.lex_state = 125, .external_lex_state = 2}, - [1347] = {.lex_state = 5, .external_lex_state = 2}, - [1348] = {.lex_state = 125, .external_lex_state = 2}, - [1349] = {.lex_state = 125, .external_lex_state = 2}, - [1350] = {.lex_state = 125, .external_lex_state = 2}, - [1351] = {.lex_state = 125, .external_lex_state = 2}, - [1352] = {.lex_state = 125, .external_lex_state = 2}, + [1347] = {.lex_state = 125, .external_lex_state = 2}, + [1348] = {.lex_state = 18, .external_lex_state = 2}, + [1349] = {.lex_state = 12, .external_lex_state = 8}, + [1350] = {.lex_state = 12, .external_lex_state = 8}, + [1351] = {.lex_state = 20, .external_lex_state = 8}, + [1352] = {.lex_state = 20, .external_lex_state = 8}, [1353] = {.lex_state = 125, .external_lex_state = 2}, [1354] = {.lex_state = 125, .external_lex_state = 2}, - [1355] = {.lex_state = 125, .external_lex_state = 2}, - [1356] = {.lex_state = 125, .external_lex_state = 2}, - [1357] = {.lex_state = 125, .external_lex_state = 2}, - [1358] = {.lex_state = 125, .external_lex_state = 2}, + [1355] = {.lex_state = 18, .external_lex_state = 2}, + [1356] = {.lex_state = 10, .external_lex_state = 2}, + [1357] = {.lex_state = 12, .external_lex_state = 8}, + [1358] = {.lex_state = 125, .external_lex_state = 5}, [1359] = {.lex_state = 125, .external_lex_state = 5}, - [1360] = {.lex_state = 125, .external_lex_state = 5}, - [1361] = {.lex_state = 125, .external_lex_state = 2}, + [1360] = {.lex_state = 125, .external_lex_state = 2}, + [1361] = {.lex_state = 12, .external_lex_state = 8}, [1362] = {.lex_state = 125, .external_lex_state = 2}, - [1363] = {.lex_state = 125, .external_lex_state = 2}, - [1364] = {.lex_state = 125, .external_lex_state = 2}, - [1365] = {.lex_state = 5, .external_lex_state = 2}, + [1363] = {.lex_state = 20, .external_lex_state = 8}, + [1364] = {.lex_state = 20, .external_lex_state = 8}, + [1365] = {.lex_state = 125, .external_lex_state = 5}, [1366] = {.lex_state = 125, .external_lex_state = 2}, [1367] = {.lex_state = 125, .external_lex_state = 2}, [1368] = {.lex_state = 125, .external_lex_state = 2}, - [1369] = {.lex_state = 125, .external_lex_state = 2}, + [1369] = {.lex_state = 20, .external_lex_state = 8}, [1370] = {.lex_state = 125, .external_lex_state = 2}, [1371] = {.lex_state = 125, .external_lex_state = 2}, - [1372] = {.lex_state = 125, .external_lex_state = 2}, + [1372] = {.lex_state = 125, .external_lex_state = 5}, [1373] = {.lex_state = 125, .external_lex_state = 2}, - [1374] = {.lex_state = 125, .external_lex_state = 2}, - [1375] = {.lex_state = 125, .external_lex_state = 2}, - [1376] = {.lex_state = 125, .external_lex_state = 2}, + [1374] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1375] = {.lex_state = 16, .external_lex_state = 7}, + [1376] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1377] = {.lex_state = 125, .external_lex_state = 2}, - [1378] = {.lex_state = 125, .external_lex_state = 2}, - [1379] = {.lex_state = 125, .external_lex_state = 2}, - [1380] = {.lex_state = 125, .external_lex_state = 2}, + [1378] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1379] = {.lex_state = 125, .external_lex_state = 5}, + [1380] = {.lex_state = 125, .external_lex_state = 5}, [1381] = {.lex_state = 125, .external_lex_state = 2}, [1382] = {.lex_state = 125, .external_lex_state = 2}, [1383] = {.lex_state = 125, .external_lex_state = 2}, - [1384] = {.lex_state = 125, .external_lex_state = 2}, - [1385] = {.lex_state = 125, .external_lex_state = 2}, - [1386] = {.lex_state = 125, .external_lex_state = 2}, - [1387] = {.lex_state = 125, .external_lex_state = 2}, + [1384] = {.lex_state = 10, .external_lex_state = 2}, + [1385] = {.lex_state = 125, .external_lex_state = 5}, + [1386] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1387] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1388] = {.lex_state = 125, .external_lex_state = 2}, - [1389] = {.lex_state = 125, .external_lex_state = 2}, - [1390] = {.lex_state = 125, .external_lex_state = 2}, - [1391] = {.lex_state = 125, .external_lex_state = 2}, - [1392] = {.lex_state = 5, .external_lex_state = 2}, - [1393] = {.lex_state = 125, .external_lex_state = 2}, + [1389] = {.lex_state = 125, .external_lex_state = 5}, + [1390] = {.lex_state = 125, .external_lex_state = 5}, + [1391] = {.lex_state = 125, .external_lex_state = 5}, + [1392] = {.lex_state = 125, .external_lex_state = 2}, + [1393] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1394] = {.lex_state = 125, .external_lex_state = 2}, - [1395] = {.lex_state = 125, .external_lex_state = 2}, - [1396] = {.lex_state = 125, .external_lex_state = 2}, - [1397] = {.lex_state = 125, .external_lex_state = 5}, - [1398] = {.lex_state = 125, .external_lex_state = 5}, - [1399] = {.lex_state = 125, .external_lex_state = 5}, - [1400] = {.lex_state = 125, .external_lex_state = 2}, - [1401] = {.lex_state = 125, .external_lex_state = 5}, - [1402] = {.lex_state = 125, .external_lex_state = 5}, + [1395] = {.lex_state = 12, .external_lex_state = 8}, + [1396] = {.lex_state = 20, .external_lex_state = 8}, + [1397] = {.lex_state = 125, .external_lex_state = 2}, + [1398] = {.lex_state = 18, .external_lex_state = 2}, + [1399] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1400] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1401] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1402] = {.lex_state = 125, .external_lex_state = 2}, [1403] = {.lex_state = 125, .external_lex_state = 2}, - [1404] = {.lex_state = 125, .external_lex_state = 2}, + [1404] = {.lex_state = 3, .external_lex_state = 2}, [1405] = {.lex_state = 125, .external_lex_state = 2}, - [1406] = {.lex_state = 125, .external_lex_state = 5}, - [1407] = {.lex_state = 125, .external_lex_state = 5}, - [1408] = {.lex_state = 125, .external_lex_state = 2}, + [1406] = {.lex_state = 125, .external_lex_state = 2}, + [1407] = {.lex_state = 125, .external_lex_state = 2}, + [1408] = {.lex_state = 125, .external_lex_state = 5}, [1409] = {.lex_state = 125, .external_lex_state = 2}, [1410] = {.lex_state = 125, .external_lex_state = 2}, [1411] = {.lex_state = 125, .external_lex_state = 2}, [1412] = {.lex_state = 125, .external_lex_state = 2}, [1413] = {.lex_state = 125, .external_lex_state = 2}, [1414] = {.lex_state = 125, .external_lex_state = 2}, - [1415] = {.lex_state = 125, .external_lex_state = 2}, + [1415] = {.lex_state = 125, .external_lex_state = 5}, [1416] = {.lex_state = 125, .external_lex_state = 2}, - [1417] = {.lex_state = 5, .external_lex_state = 2}, + [1417] = {.lex_state = 125, .external_lex_state = 2}, [1418] = {.lex_state = 125, .external_lex_state = 2}, [1419] = {.lex_state = 125, .external_lex_state = 2}, [1420] = {.lex_state = 125, .external_lex_state = 2}, [1421] = {.lex_state = 125, .external_lex_state = 2}, [1422] = {.lex_state = 125, .external_lex_state = 2}, [1423] = {.lex_state = 125, .external_lex_state = 2}, - [1424] = {.lex_state = 125, .external_lex_state = 2}, - [1425] = {.lex_state = 125, .external_lex_state = 2}, + [1424] = {.lex_state = 6, .external_lex_state = 2}, + [1425] = {.lex_state = 125, .external_lex_state = 5}, [1426] = {.lex_state = 125, .external_lex_state = 2}, [1427] = {.lex_state = 125, .external_lex_state = 2}, - [1428] = {.lex_state = 125, .external_lex_state = 2}, + [1428] = {.lex_state = 6, .external_lex_state = 2}, [1429] = {.lex_state = 125, .external_lex_state = 2}, [1430] = {.lex_state = 125, .external_lex_state = 2}, [1431] = {.lex_state = 125, .external_lex_state = 2}, [1432] = {.lex_state = 125, .external_lex_state = 2}, [1433] = {.lex_state = 125, .external_lex_state = 2}, [1434] = {.lex_state = 125, .external_lex_state = 2}, - [1435] = {.lex_state = 125, .external_lex_state = 5}, + [1435] = {.lex_state = 125, .external_lex_state = 2}, [1436] = {.lex_state = 125, .external_lex_state = 2}, [1437] = {.lex_state = 125, .external_lex_state = 2}, [1438] = {.lex_state = 125, .external_lex_state = 2}, - [1439] = {.lex_state = 125, .external_lex_state = 2}, + [1439] = {.lex_state = 125, .external_lex_state = 5}, [1440] = {.lex_state = 125, .external_lex_state = 2}, [1441] = {.lex_state = 125, .external_lex_state = 2}, [1442] = {.lex_state = 125, .external_lex_state = 2}, [1443] = {.lex_state = 125, .external_lex_state = 2}, - [1444] = {.lex_state = 125, .external_lex_state = 2}, + [1444] = {.lex_state = 6, .external_lex_state = 2}, [1445] = {.lex_state = 125, .external_lex_state = 2}, - [1446] = {.lex_state = 125, .external_lex_state = 2}, + [1446] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 1}, [1447] = {.lex_state = 125, .external_lex_state = 5}, - [1448] = {.lex_state = 125, .external_lex_state = 5}, + [1448] = {.lex_state = 125, .external_lex_state = 2}, [1449] = {.lex_state = 125, .external_lex_state = 2}, [1450] = {.lex_state = 125, .external_lex_state = 2}, - [1451] = {.lex_state = 125, .external_lex_state = 5}, + [1451] = {.lex_state = 125, .external_lex_state = 2}, [1452] = {.lex_state = 125, .external_lex_state = 2}, [1453] = {.lex_state = 125, .external_lex_state = 5}, [1454] = {.lex_state = 125, .external_lex_state = 2}, - [1455] = {.lex_state = 125, .external_lex_state = 5}, - [1456] = {.lex_state = 125, .external_lex_state = 2}, + [1455] = {.lex_state = 125, .external_lex_state = 2}, + [1456] = {.lex_state = 125, .external_lex_state = 5, .reserved_word_set_id = 1}, [1457] = {.lex_state = 125, .external_lex_state = 2}, [1458] = {.lex_state = 125, .external_lex_state = 2}, [1459] = {.lex_state = 125, .external_lex_state = 2}, [1460] = {.lex_state = 125, .external_lex_state = 2}, - [1461] = {.lex_state = 125, .external_lex_state = 5}, - [1462] = {.lex_state = 125, .external_lex_state = 2}, + [1461] = {.lex_state = 125, .external_lex_state = 2}, + [1462] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1463] = {.lex_state = 125, .external_lex_state = 2}, [1464] = {.lex_state = 125, .external_lex_state = 2}, [1465] = {.lex_state = 125, .external_lex_state = 2}, [1466] = {.lex_state = 125, .external_lex_state = 2}, [1467] = {.lex_state = 125, .external_lex_state = 2}, - [1468] = {.lex_state = 125, .external_lex_state = 2}, - [1469] = {.lex_state = 125, .external_lex_state = 2}, - [1470] = {.lex_state = 125, .external_lex_state = 2}, - [1471] = {.lex_state = 125, .external_lex_state = 2}, + [1468] = {.lex_state = 125, .external_lex_state = 5}, + [1469] = {.lex_state = 125, .external_lex_state = 5}, + [1470] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1471] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1472] = {.lex_state = 125, .external_lex_state = 2}, - [1473] = {.lex_state = 125, .external_lex_state = 2}, + [1473] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1474] = {.lex_state = 125, .external_lex_state = 2}, [1475] = {.lex_state = 125, .external_lex_state = 2}, - [1476] = {.lex_state = 125, .external_lex_state = 5}, + [1476] = {.lex_state = 125, .external_lex_state = 2}, [1477] = {.lex_state = 125, .external_lex_state = 2}, - [1478] = {.lex_state = 125, .external_lex_state = 2}, - [1479] = {.lex_state = 125, .external_lex_state = 2}, + [1478] = {.lex_state = 3, .external_lex_state = 2}, + [1479] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1480] = {.lex_state = 125, .external_lex_state = 2}, [1481] = {.lex_state = 125, .external_lex_state = 2}, - [1482] = {.lex_state = 125, .external_lex_state = 2}, + [1482] = {.lex_state = 125, .external_lex_state = 5}, [1483] = {.lex_state = 125, .external_lex_state = 2}, [1484] = {.lex_state = 125, .external_lex_state = 2}, [1485] = {.lex_state = 125, .external_lex_state = 2}, @@ -8061,28 +8377,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1489] = {.lex_state = 125, .external_lex_state = 2}, [1490] = {.lex_state = 125, .external_lex_state = 2}, [1491] = {.lex_state = 125, .external_lex_state = 2}, - [1492] = {.lex_state = 125, .external_lex_state = 2}, - [1493] = {.lex_state = 125, .external_lex_state = 2}, + [1492] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1493] = {.lex_state = 125, .external_lex_state = 5}, [1494] = {.lex_state = 125, .external_lex_state = 2}, - [1495] = {.lex_state = 125, .external_lex_state = 2}, - [1496] = {.lex_state = 125, .external_lex_state = 2}, - [1497] = {.lex_state = 125, .external_lex_state = 2}, + [1495] = {.lex_state = 125, .external_lex_state = 5}, + [1496] = {.lex_state = 6, .external_lex_state = 2}, + [1497] = {.lex_state = 125, .external_lex_state = 5}, [1498] = {.lex_state = 125, .external_lex_state = 2}, [1499] = {.lex_state = 125, .external_lex_state = 2}, - [1500] = {.lex_state = 125, .external_lex_state = 2}, + [1500] = {.lex_state = 125, .external_lex_state = 5}, [1501] = {.lex_state = 125, .external_lex_state = 2}, [1502] = {.lex_state = 125, .external_lex_state = 2}, [1503] = {.lex_state = 125, .external_lex_state = 2}, [1504] = {.lex_state = 125, .external_lex_state = 2}, - [1505] = {.lex_state = 125, .external_lex_state = 2}, + [1505] = {.lex_state = 125, .external_lex_state = 5}, [1506] = {.lex_state = 125, .external_lex_state = 2}, [1507] = {.lex_state = 125, .external_lex_state = 2}, [1508] = {.lex_state = 125, .external_lex_state = 2}, [1509] = {.lex_state = 125, .external_lex_state = 2}, [1510] = {.lex_state = 125, .external_lex_state = 2}, [1511] = {.lex_state = 125, .external_lex_state = 2}, - [1512] = {.lex_state = 125, .external_lex_state = 2}, - [1513] = {.lex_state = 125, .external_lex_state = 2}, + [1512] = {.lex_state = 6, .external_lex_state = 2}, + [1513] = {.lex_state = 125, .external_lex_state = 5}, [1514] = {.lex_state = 125, .external_lex_state = 2}, [1515] = {.lex_state = 125, .external_lex_state = 2}, [1516] = {.lex_state = 125, .external_lex_state = 2}, @@ -8090,36 +8406,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1518] = {.lex_state = 125, .external_lex_state = 2}, [1519] = {.lex_state = 125, .external_lex_state = 2}, [1520] = {.lex_state = 125, .external_lex_state = 2}, - [1521] = {.lex_state = 125, .external_lex_state = 2}, - [1522] = {.lex_state = 125, .external_lex_state = 2}, + [1521] = {.lex_state = 125, .external_lex_state = 5}, + [1522] = {.lex_state = 125, .external_lex_state = 5}, [1523] = {.lex_state = 125, .external_lex_state = 2}, [1524] = {.lex_state = 125, .external_lex_state = 2}, [1525] = {.lex_state = 125, .external_lex_state = 2}, - [1526] = {.lex_state = 125, .external_lex_state = 2}, + [1526] = {.lex_state = 125, .external_lex_state = 5}, [1527] = {.lex_state = 125, .external_lex_state = 2}, - [1528] = {.lex_state = 125, .external_lex_state = 5}, + [1528] = {.lex_state = 125, .external_lex_state = 2}, [1529] = {.lex_state = 125, .external_lex_state = 2}, [1530] = {.lex_state = 125, .external_lex_state = 2}, [1531] = {.lex_state = 125, .external_lex_state = 2}, [1532] = {.lex_state = 125, .external_lex_state = 2}, [1533] = {.lex_state = 125, .external_lex_state = 2}, - [1534] = {.lex_state = 125, .external_lex_state = 2}, + [1534] = {.lex_state = 6, .external_lex_state = 2}, [1535] = {.lex_state = 125, .external_lex_state = 2}, - [1536] = {.lex_state = 5, .external_lex_state = 2}, + [1536] = {.lex_state = 125, .external_lex_state = 2}, [1537] = {.lex_state = 125, .external_lex_state = 2}, [1538] = {.lex_state = 125, .external_lex_state = 2}, [1539] = {.lex_state = 125, .external_lex_state = 2}, - [1540] = {.lex_state = 31, .external_lex_state = 2}, + [1540] = {.lex_state = 125, .external_lex_state = 2}, [1541] = {.lex_state = 125, .external_lex_state = 2}, [1542] = {.lex_state = 125, .external_lex_state = 2}, - [1543] = {.lex_state = 125, .external_lex_state = 5}, + [1543] = {.lex_state = 125, .external_lex_state = 2}, [1544] = {.lex_state = 125, .external_lex_state = 2}, [1545] = {.lex_state = 125, .external_lex_state = 2}, [1546] = {.lex_state = 125, .external_lex_state = 2}, [1547] = {.lex_state = 125, .external_lex_state = 2}, [1548] = {.lex_state = 125, .external_lex_state = 2}, - [1549] = {.lex_state = 125, .external_lex_state = 5}, - [1550] = {.lex_state = 125, .external_lex_state = 2}, + [1549] = {.lex_state = 125, .external_lex_state = 2}, + [1550] = {.lex_state = 6, .external_lex_state = 2}, [1551] = {.lex_state = 125, .external_lex_state = 2}, [1552] = {.lex_state = 125, .external_lex_state = 2}, [1553] = {.lex_state = 125, .external_lex_state = 2}, @@ -8130,16 +8446,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1558] = {.lex_state = 125, .external_lex_state = 2}, [1559] = {.lex_state = 125, .external_lex_state = 2}, [1560] = {.lex_state = 125, .external_lex_state = 2}, - [1561] = {.lex_state = 125, .external_lex_state = 5}, - [1562] = {.lex_state = 125, .external_lex_state = 5}, + [1561] = {.lex_state = 125, .external_lex_state = 2}, + [1562] = {.lex_state = 125, .external_lex_state = 2}, [1563] = {.lex_state = 125, .external_lex_state = 2}, [1564] = {.lex_state = 125, .external_lex_state = 2}, [1565] = {.lex_state = 125, .external_lex_state = 2}, [1566] = {.lex_state = 125, .external_lex_state = 2}, [1567] = {.lex_state = 125, .external_lex_state = 2}, - [1568] = {.lex_state = 125, .external_lex_state = 5}, + [1568] = {.lex_state = 125, .external_lex_state = 2}, [1569] = {.lex_state = 125, .external_lex_state = 2}, - [1570] = {.lex_state = 125, .external_lex_state = 5}, + [1570] = {.lex_state = 125, .external_lex_state = 2}, [1571] = {.lex_state = 125, .external_lex_state = 2}, [1572] = {.lex_state = 125, .external_lex_state = 2}, [1573] = {.lex_state = 125, .external_lex_state = 2}, @@ -8151,7 +8467,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1579] = {.lex_state = 125, .external_lex_state = 2}, [1580] = {.lex_state = 125, .external_lex_state = 2}, [1581] = {.lex_state = 125, .external_lex_state = 2}, - [1582] = {.lex_state = 5, .external_lex_state = 2}, + [1582] = {.lex_state = 125, .external_lex_state = 2}, [1583] = {.lex_state = 125, .external_lex_state = 2}, [1584] = {.lex_state = 125, .external_lex_state = 2}, [1585] = {.lex_state = 125, .external_lex_state = 2}, @@ -8189,9 +8505,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1617] = {.lex_state = 125, .external_lex_state = 2}, [1618] = {.lex_state = 125, .external_lex_state = 2}, [1619] = {.lex_state = 125, .external_lex_state = 2}, - [1620] = {.lex_state = 125, .external_lex_state = 2}, + [1620] = {.lex_state = 125, .external_lex_state = 5}, [1621] = {.lex_state = 125, .external_lex_state = 2}, - [1622] = {.lex_state = 32, .external_lex_state = 2}, + [1622] = {.lex_state = 125, .external_lex_state = 2}, [1623] = {.lex_state = 125, .external_lex_state = 2}, [1624] = {.lex_state = 125, .external_lex_state = 2}, [1625] = {.lex_state = 125, .external_lex_state = 2}, @@ -8199,13 +8515,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1627] = {.lex_state = 125, .external_lex_state = 2}, [1628] = {.lex_state = 125, .external_lex_state = 2}, [1629] = {.lex_state = 125, .external_lex_state = 2}, - [1630] = {.lex_state = 32, .external_lex_state = 2}, + [1630] = {.lex_state = 125, .external_lex_state = 2}, [1631] = {.lex_state = 125, .external_lex_state = 2}, [1632] = {.lex_state = 125, .external_lex_state = 2}, [1633] = {.lex_state = 125, .external_lex_state = 2}, [1634] = {.lex_state = 125, .external_lex_state = 2}, - [1635] = {.lex_state = 2, .external_lex_state = 9}, - [1636] = {.lex_state = 32, .external_lex_state = 2}, + [1635] = {.lex_state = 125, .external_lex_state = 2}, + [1636] = {.lex_state = 125, .external_lex_state = 2}, [1637] = {.lex_state = 125, .external_lex_state = 2}, [1638] = {.lex_state = 125, .external_lex_state = 2}, [1639] = {.lex_state = 125, .external_lex_state = 2}, @@ -8223,55 +8539,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1651] = {.lex_state = 125, .external_lex_state = 2}, [1652] = {.lex_state = 125, .external_lex_state = 2}, [1653] = {.lex_state = 125, .external_lex_state = 2}, - [1654] = {.lex_state = 125, .external_lex_state = 2}, - [1655] = {.lex_state = 125, .external_lex_state = 2}, + [1654] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1655] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, [1656] = {.lex_state = 125, .external_lex_state = 2}, [1657] = {.lex_state = 125, .external_lex_state = 2}, [1658] = {.lex_state = 125, .external_lex_state = 2}, [1659] = {.lex_state = 125, .external_lex_state = 2}, [1660] = {.lex_state = 125, .external_lex_state = 2}, [1661] = {.lex_state = 125, .external_lex_state = 2}, - [1662] = {.lex_state = 125, .external_lex_state = 2}, + [1662] = {.lex_state = 125, .external_lex_state = 5}, [1663] = {.lex_state = 125, .external_lex_state = 2}, - [1664] = {.lex_state = 125, .external_lex_state = 2}, + [1664] = {.lex_state = 125, .external_lex_state = 5}, [1665] = {.lex_state = 125, .external_lex_state = 2}, - [1666] = {.lex_state = 125, .external_lex_state = 2}, + [1666] = {.lex_state = 125, .external_lex_state = 5}, [1667] = {.lex_state = 125, .external_lex_state = 2}, [1668] = {.lex_state = 125, .external_lex_state = 2}, [1669] = {.lex_state = 125, .external_lex_state = 2}, [1670] = {.lex_state = 125, .external_lex_state = 2}, [1671] = {.lex_state = 125, .external_lex_state = 2}, [1672] = {.lex_state = 125, .external_lex_state = 2}, - [1673] = {.lex_state = 125, .external_lex_state = 2}, - [1674] = {.lex_state = 125, .external_lex_state = 2}, + [1673] = {.lex_state = 125, .external_lex_state = 5}, + [1674] = {.lex_state = 125, .external_lex_state = 5}, [1675] = {.lex_state = 125, .external_lex_state = 2}, [1676] = {.lex_state = 125, .external_lex_state = 2}, [1677] = {.lex_state = 125, .external_lex_state = 2}, - [1678] = {.lex_state = 125, .external_lex_state = 2}, + [1678] = {.lex_state = 125, .external_lex_state = 5}, [1679] = {.lex_state = 125, .external_lex_state = 2}, [1680] = {.lex_state = 125, .external_lex_state = 2}, [1681] = {.lex_state = 125, .external_lex_state = 2}, [1682] = {.lex_state = 125, .external_lex_state = 2}, [1683] = {.lex_state = 125, .external_lex_state = 2}, [1684] = {.lex_state = 125, .external_lex_state = 2}, - [1685] = {.lex_state = 125, .external_lex_state = 2}, - [1686] = {.lex_state = 125, .external_lex_state = 2}, + [1685] = {.lex_state = 125, .external_lex_state = 5}, + [1686] = {.lex_state = 125, .external_lex_state = 5}, [1687] = {.lex_state = 125, .external_lex_state = 2}, - [1688] = {.lex_state = 2, .external_lex_state = 9}, - [1689] = {.lex_state = 125, .external_lex_state = 2}, + [1688] = {.lex_state = 125, .external_lex_state = 2}, + [1689] = {.lex_state = 125, .external_lex_state = 5}, [1690] = {.lex_state = 125, .external_lex_state = 2}, [1691] = {.lex_state = 125, .external_lex_state = 2}, - [1692] = {.lex_state = 2, .external_lex_state = 9}, + [1692] = {.lex_state = 125, .external_lex_state = 2}, [1693] = {.lex_state = 125, .external_lex_state = 2}, [1694] = {.lex_state = 125, .external_lex_state = 2}, - [1695] = {.lex_state = 125, .external_lex_state = 2}, + [1695] = {.lex_state = 125, .external_lex_state = 5}, [1696] = {.lex_state = 125, .external_lex_state = 2}, [1697] = {.lex_state = 125, .external_lex_state = 2}, - [1698] = {.lex_state = 2, .external_lex_state = 9}, + [1698] = {.lex_state = 125, .external_lex_state = 2}, [1699] = {.lex_state = 125, .external_lex_state = 2}, [1700] = {.lex_state = 125, .external_lex_state = 2}, [1701] = {.lex_state = 125, .external_lex_state = 2}, - [1702] = {.lex_state = 125, .external_lex_state = 2}, + [1702] = {.lex_state = 125, .external_lex_state = 5}, [1703] = {.lex_state = 125, .external_lex_state = 2}, [1704] = {.lex_state = 125, .external_lex_state = 2}, [1705] = {.lex_state = 125, .external_lex_state = 2}, @@ -8283,7 +8599,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1711] = {.lex_state = 125, .external_lex_state = 2}, [1712] = {.lex_state = 125, .external_lex_state = 2}, [1713] = {.lex_state = 125, .external_lex_state = 2}, - [1714] = {.lex_state = 32, .external_lex_state = 2}, + [1714] = {.lex_state = 125, .external_lex_state = 2}, [1715] = {.lex_state = 125, .external_lex_state = 2}, [1716] = {.lex_state = 125, .external_lex_state = 2}, [1717] = {.lex_state = 125, .external_lex_state = 2}, @@ -8291,10 +8607,411 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1719] = {.lex_state = 125, .external_lex_state = 2}, [1720] = {.lex_state = 125, .external_lex_state = 2}, [1721] = {.lex_state = 125, .external_lex_state = 2}, + [1722] = {.lex_state = 125, .external_lex_state = 2}, + [1723] = {.lex_state = 125, .external_lex_state = 2}, + [1724] = {.lex_state = 31, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1725] = {.lex_state = 125, .external_lex_state = 2}, + [1726] = {.lex_state = 125, .external_lex_state = 2}, + [1727] = {.lex_state = 125, .external_lex_state = 5}, + [1728] = {.lex_state = 125, .external_lex_state = 2}, + [1729] = {.lex_state = 125, .external_lex_state = 2}, + [1730] = {.lex_state = 125, .external_lex_state = 2}, + [1731] = {.lex_state = 125, .external_lex_state = 5}, + [1732] = {.lex_state = 125, .external_lex_state = 5}, + [1733] = {.lex_state = 125, .external_lex_state = 2}, + [1734] = {.lex_state = 125, .external_lex_state = 2}, + [1735] = {.lex_state = 125, .external_lex_state = 2}, + [1736] = {.lex_state = 6, .external_lex_state = 2}, + [1737] = {.lex_state = 125, .external_lex_state = 5}, + [1738] = {.lex_state = 125, .external_lex_state = 2}, + [1739] = {.lex_state = 125, .external_lex_state = 2}, + [1740] = {.lex_state = 125, .external_lex_state = 2}, + [1741] = {.lex_state = 125, .external_lex_state = 2}, + [1742] = {.lex_state = 125, .external_lex_state = 2}, + [1743] = {.lex_state = 125, .external_lex_state = 2}, + [1744] = {.lex_state = 125, .external_lex_state = 2}, + [1745] = {.lex_state = 125, .external_lex_state = 2}, + [1746] = {.lex_state = 125, .external_lex_state = 2}, + [1747] = {.lex_state = 125, .external_lex_state = 2}, + [1748] = {.lex_state = 125, .external_lex_state = 2}, + [1749] = {.lex_state = 125, .external_lex_state = 2}, + [1750] = {.lex_state = 125, .external_lex_state = 2}, + [1751] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1752] = {.lex_state = 125, .external_lex_state = 2}, + [1753] = {.lex_state = 125, .external_lex_state = 2}, + [1754] = {.lex_state = 125, .external_lex_state = 2}, + [1755] = {.lex_state = 125, .external_lex_state = 2}, + [1756] = {.lex_state = 125, .external_lex_state = 2}, + [1757] = {.lex_state = 125, .external_lex_state = 2}, + [1758] = {.lex_state = 125, .external_lex_state = 2}, + [1759] = {.lex_state = 125, .external_lex_state = 2}, + [1760] = {.lex_state = 125, .external_lex_state = 2}, + [1761] = {.lex_state = 125, .external_lex_state = 2}, + [1762] = {.lex_state = 125, .external_lex_state = 2}, + [1763] = {.lex_state = 125, .external_lex_state = 2}, + [1764] = {.lex_state = 125, .external_lex_state = 2}, + [1765] = {.lex_state = 125, .external_lex_state = 2}, + [1766] = {.lex_state = 125, .external_lex_state = 2}, + [1767] = {.lex_state = 125, .external_lex_state = 2}, + [1768] = {.lex_state = 125, .external_lex_state = 2}, + [1769] = {.lex_state = 2, .external_lex_state = 9}, + [1770] = {.lex_state = 32, .external_lex_state = 2}, + [1771] = {.lex_state = 125, .external_lex_state = 2}, + [1772] = {.lex_state = 125, .external_lex_state = 2}, + [1773] = {.lex_state = 125, .external_lex_state = 2}, + [1774] = {.lex_state = 125, .external_lex_state = 2}, + [1775] = {.lex_state = 125, .external_lex_state = 2}, + [1776] = {.lex_state = 125, .external_lex_state = 2}, + [1777] = {.lex_state = 125, .external_lex_state = 2}, + [1778] = {.lex_state = 125, .external_lex_state = 2}, + [1779] = {.lex_state = 125, .external_lex_state = 2}, + [1780] = {.lex_state = 125, .external_lex_state = 2}, + [1781] = {.lex_state = 125, .external_lex_state = 2}, + [1782] = {.lex_state = 125, .external_lex_state = 2}, + [1783] = {.lex_state = 125, .external_lex_state = 2}, + [1784] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1785] = {.lex_state = 2, .external_lex_state = 9}, + [1786] = {.lex_state = 125, .external_lex_state = 2}, + [1787] = {.lex_state = 32, .external_lex_state = 2}, + [1788] = {.lex_state = 125, .external_lex_state = 2}, + [1789] = {.lex_state = 125, .external_lex_state = 2}, + [1790] = {.lex_state = 125, .external_lex_state = 2}, + [1791] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1792] = {.lex_state = 125, .external_lex_state = 2}, + [1793] = {.lex_state = 125, .external_lex_state = 2}, + [1794] = {.lex_state = 125, .external_lex_state = 2}, + [1795] = {.lex_state = 125, .external_lex_state = 2}, + [1796] = {.lex_state = 125, .external_lex_state = 2}, + [1797] = {.lex_state = 125, .external_lex_state = 2}, + [1798] = {.lex_state = 125, .external_lex_state = 2}, + [1799] = {.lex_state = 125, .external_lex_state = 2}, + [1800] = {.lex_state = 125, .external_lex_state = 2}, + [1801] = {.lex_state = 125, .external_lex_state = 2}, + [1802] = {.lex_state = 125, .external_lex_state = 2}, + [1803] = {.lex_state = 125, .external_lex_state = 2}, + [1804] = {.lex_state = 125, .external_lex_state = 2}, + [1805] = {.lex_state = 125, .external_lex_state = 2}, + [1806] = {.lex_state = 125, .external_lex_state = 2}, + [1807] = {.lex_state = 125, .external_lex_state = 2}, + [1808] = {.lex_state = 32, .external_lex_state = 2}, + [1809] = {.lex_state = 125, .external_lex_state = 2}, + [1810] = {.lex_state = 125, .external_lex_state = 2}, + [1811] = {.lex_state = 125, .external_lex_state = 2}, + [1812] = {.lex_state = 125, .external_lex_state = 2}, + [1813] = {.lex_state = 125, .external_lex_state = 2}, + [1814] = {.lex_state = 125, .external_lex_state = 2}, + [1815] = {.lex_state = 125, .external_lex_state = 2}, + [1816] = {.lex_state = 125, .external_lex_state = 2}, + [1817] = {.lex_state = 125, .external_lex_state = 2}, + [1818] = {.lex_state = 125, .external_lex_state = 2}, + [1819] = {.lex_state = 125, .external_lex_state = 2}, + [1820] = {.lex_state = 125, .external_lex_state = 2}, + [1821] = {.lex_state = 125, .external_lex_state = 2}, + [1822] = {.lex_state = 32, .external_lex_state = 2}, + [1823] = {.lex_state = 125, .external_lex_state = 2}, + [1824] = {.lex_state = 125, .external_lex_state = 2}, + [1825] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1826] = {.lex_state = 125, .external_lex_state = 2}, + [1827] = {.lex_state = 125, .external_lex_state = 2}, + [1828] = {.lex_state = 125, .external_lex_state = 2}, + [1829] = {.lex_state = 2, .external_lex_state = 9}, + [1830] = {.lex_state = 125, .external_lex_state = 2}, + [1831] = {.lex_state = 125, .external_lex_state = 2}, + [1832] = {.lex_state = 2, .external_lex_state = 9}, + [1833] = {.lex_state = 125, .external_lex_state = 2}, + [1834] = {.lex_state = 125, .external_lex_state = 2}, + [1835] = {.lex_state = 125, .external_lex_state = 2}, + [1836] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1837] = {.lex_state = 125, .external_lex_state = 2}, + [1838] = {.lex_state = 125, .external_lex_state = 2}, + [1839] = {.lex_state = 125, .external_lex_state = 2}, + [1840] = {.lex_state = 125, .external_lex_state = 2}, + [1841] = {.lex_state = 125, .external_lex_state = 2}, + [1842] = {.lex_state = 125, .external_lex_state = 2}, + [1843] = {.lex_state = 125, .external_lex_state = 2}, + [1844] = {.lex_state = 125, .external_lex_state = 2}, + [1845] = {.lex_state = 125, .external_lex_state = 2}, + [1846] = {.lex_state = 125, .external_lex_state = 2}, + [1847] = {.lex_state = 125, .external_lex_state = 2}, + [1848] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1849] = {.lex_state = 125, .external_lex_state = 2}, + [1850] = {.lex_state = 125, .external_lex_state = 2}, + [1851] = {.lex_state = 125, .external_lex_state = 2}, + [1852] = {.lex_state = 125, .external_lex_state = 2}, + [1853] = {.lex_state = 125, .external_lex_state = 2}, + [1854] = {.lex_state = 125, .external_lex_state = 2}, + [1855] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1856] = {.lex_state = 125, .external_lex_state = 2}, + [1857] = {.lex_state = 125, .external_lex_state = 2}, + [1858] = {.lex_state = 125, .external_lex_state = 2}, + [1859] = {.lex_state = 125, .external_lex_state = 2}, + [1860] = {.lex_state = 125, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1861] = {.lex_state = 125, .external_lex_state = 2}, + [1862] = {.lex_state = 125, .external_lex_state = 2}, + [1863] = {.lex_state = 125, .external_lex_state = 2}, + [1864] = {.lex_state = 125, .external_lex_state = 2}, + [1865] = {.lex_state = 125, .external_lex_state = 2}, + [1866] = {.lex_state = 125, .external_lex_state = 2}, + [1867] = {.lex_state = 125, .external_lex_state = 2}, + [1868] = {.lex_state = 125, .external_lex_state = 2}, + [1869] = {.lex_state = 125, .external_lex_state = 2}, +}; + +static const TSSymbol ts_reserved_words[14][MAX_RESERVED_WORD_SET_SIZE] = { + [1] = { + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + anon_sym_class, + anon_sym_extends, + anon_sym_function, + anon_sym_new, + anon_sym_instanceof, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + }, + [2] = { + anon_sym_default, + anon_sym_with, + anon_sym_var, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + anon_sym_extends, + }, + [3] = { + anon_sym_else, + anon_sym_in, + anon_sym_catch, + anon_sym_finally, + anon_sym_extends, + anon_sym_instanceof, + }, + [4] = { + anon_sym_default, + anon_sym_else, + anon_sym_in, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + anon_sym_extends, + anon_sym_instanceof, + }, + [5] = { + anon_sym_catch, + anon_sym_finally, + anon_sym_extends, + }, + [6] = { + anon_sym_default, + anon_sym_with, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + anon_sym_extends, + anon_sym_instanceof, + }, + [7] = { + anon_sym_default, + anon_sym_with, + anon_sym_var, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + anon_sym_extends, + anon_sym_instanceof, + }, + [8] = { + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + anon_sym_class, + anon_sym_extends, + anon_sym_new, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + }, + [9] = { + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + anon_sym_class, + anon_sym_extends, + anon_sym_function, + anon_sym_new, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + }, + [10] = { + anon_sym_in, + anon_sym_extends, + anon_sym_instanceof, + }, + [11] = { + anon_sym_in, + anon_sym_catch, + anon_sym_extends, + anon_sym_instanceof, + }, + [12] = { + anon_sym_in, + anon_sym_catch, + anon_sym_finally, + anon_sym_extends, + anon_sym_instanceof, + }, + [13] = { + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_const, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_in, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_catch, + anon_sym_finally, + anon_sym_class, + anon_sym_function, + anon_sym_new, + anon_sym_instanceof, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + }, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { + [STATE(0)] = { [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), [sym_hash_bang_line] = ACTIONS(1), @@ -8311,6 +9028,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_var] = ACTIONS(1), [anon_sym_let] = ACTIONS(1), [anon_sym_const] = ACTIONS(1), + [anon_sym_using] = ACTIONS(1), + [anon_sym_await] = ACTIONS(1), + [anon_sym_of] = ACTIONS(1), [anon_sym_else] = ACTIONS(1), [anon_sym_if] = ACTIONS(1), [anon_sym_switch] = ACTIONS(1), @@ -8318,9 +9038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), [anon_sym_RPAREN] = ACTIONS(1), - [anon_sym_await] = ACTIONS(1), [anon_sym_in] = ACTIONS(1), - [anon_sym_of] = ACTIONS(1), [anon_sym_while] = ACTIONS(1), [anon_sym_do] = ACTIONS(1), [anon_sym_try] = ACTIONS(1), @@ -8420,72 +9138,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), [sym_jsx_text] = ACTIONS(1), }, - [1] = { - [sym_program] = STATE(1626), - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(18), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(1)] = { + [sym_program] = STATE(1786), + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(20), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(1267), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_hash_bang_line] = ACTIONS(11), @@ -8496,2170 +9215,2090 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [2] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(12), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1661), - [sym_object_assignment_pattern] = STATE(1281), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1661), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1661), - [sym_spread_element] = STATE(1333), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(743), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [sym_rest_pattern] = STATE(1281), - [sym_method_definition] = STATE(1333), - [sym_pair] = STATE(1333), - [sym_pair_pattern] = STATE(1281), - [sym__property_name] = STATE(1290), - [sym_computed_property_name] = STATE(1290), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(903), - [aux_sym_object_repeat1] = STATE(1334), - [aux_sym_object_pattern_repeat1] = STATE(1312), - [sym_identifier] = ACTIONS(95), - [anon_sym_export] = ACTIONS(97), - [anon_sym_STAR] = ACTIONS(99), + [STATE(2)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(18), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1853), + [sym_object_assignment_pattern] = STATE(1454), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1853), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1853), + [sym_spread_element] = STATE(1406), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(815), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [sym_rest_pattern] = STATE(1454), + [sym_method_definition] = STATE(1406), + [sym_pair] = STATE(1406), + [sym_pair_pattern] = STATE(1454), + [sym__property_name] = STATE(1407), + [sym_computed_property_name] = STATE(1407), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(1014), + [aux_sym_object_repeat1] = STATE(1499), + [aux_sym_object_pattern_repeat1] = STATE(1476), + [sym_identifier] = ACTIONS(97), + [anon_sym_export] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_RBRACE] = ACTIONS(103), + [anon_sym_COMMA] = ACTIONS(103), + [anon_sym_RBRACE] = ACTIONS(105), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(105), + [anon_sym_let] = ACTIONS(107), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(109), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(109), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(113), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(113), - [sym_private_property_identifier] = ACTIONS(115), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(117), - [aux_sym_method_definition_token1] = ACTIONS(119), - [anon_sym_get] = ACTIONS(121), - [anon_sym_set] = ACTIONS(121), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(117), + [sym_private_property_identifier] = ACTIONS(119), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(121), + [aux_sym_method_definition_token1] = ACTIONS(123), + [anon_sym_get] = ACTIONS(125), + [anon_sym_set] = ACTIONS(125), [sym_html_comment] = ACTIONS(5), }, - [3] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1661), - [sym_object_assignment_pattern] = STATE(1281), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1661), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1661), - [sym_spread_element] = STATE(1289), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(743), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [sym_rest_pattern] = STATE(1281), - [sym_method_definition] = STATE(1289), - [sym_pair] = STATE(1289), - [sym_pair_pattern] = STATE(1281), - [sym__property_name] = STATE(1290), - [sym_computed_property_name] = STATE(1290), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(903), - [aux_sym_object_repeat1] = STATE(1309), - [aux_sym_object_pattern_repeat1] = STATE(1312), - [sym_identifier] = ACTIONS(123), - [anon_sym_export] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(99), + [STATE(3)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(18), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1853), + [sym_object_assignment_pattern] = STATE(1454), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1853), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1853), + [sym_spread_element] = STATE(1406), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(815), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [sym_rest_pattern] = STATE(1454), + [sym_method_definition] = STATE(1406), + [sym_pair] = STATE(1406), + [sym_pair_pattern] = STATE(1454), + [sym__property_name] = STATE(1407), + [sym_computed_property_name] = STATE(1407), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(1014), + [aux_sym_object_repeat1] = STATE(1499), + [aux_sym_object_pattern_repeat1] = STATE(1476), + [sym_identifier] = ACTIONS(97), + [anon_sym_export] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(101), + [anon_sym_COMMA] = ACTIONS(103), [anon_sym_RBRACE] = ACTIONS(127), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(129), + [anon_sym_let] = ACTIONS(107), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(131), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(109), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(113), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(113), - [sym_private_property_identifier] = ACTIONS(115), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(133), - [aux_sym_method_definition_token1] = ACTIONS(119), - [anon_sym_get] = ACTIONS(135), - [anon_sym_set] = ACTIONS(135), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(117), + [sym_private_property_identifier] = ACTIONS(119), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(121), + [aux_sym_method_definition_token1] = ACTIONS(123), + [anon_sym_get] = ACTIONS(125), + [anon_sym_set] = ACTIONS(125), [sym_html_comment] = ACTIONS(5), }, - [4] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1661), - [sym_object_assignment_pattern] = STATE(1281), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1661), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1661), - [sym_spread_element] = STATE(1289), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(743), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [sym_rest_pattern] = STATE(1281), - [sym_method_definition] = STATE(1289), - [sym_pair] = STATE(1289), - [sym_pair_pattern] = STATE(1281), - [sym__property_name] = STATE(1290), - [sym_computed_property_name] = STATE(1290), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(903), - [aux_sym_object_repeat1] = STATE(1309), - [aux_sym_object_pattern_repeat1] = STATE(1312), - [sym_identifier] = ACTIONS(123), - [anon_sym_export] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(99), + [STATE(4)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(22), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1853), + [sym_object_assignment_pattern] = STATE(1454), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1853), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1853), + [sym_spread_element] = STATE(1406), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(815), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [sym_rest_pattern] = STATE(1454), + [sym_method_definition] = STATE(1406), + [sym_pair] = STATE(1406), + [sym_pair_pattern] = STATE(1454), + [sym__property_name] = STATE(1407), + [sym_computed_property_name] = STATE(1407), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(1014), + [aux_sym_object_repeat1] = STATE(1499), + [aux_sym_object_pattern_repeat1] = STATE(1476), + [sym_identifier] = ACTIONS(97), + [anon_sym_export] = ACTIONS(99), + [anon_sym_STAR] = ACTIONS(101), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_RBRACE] = ACTIONS(137), + [anon_sym_COMMA] = ACTIONS(103), + [anon_sym_RBRACE] = ACTIONS(129), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(129), + [anon_sym_let] = ACTIONS(107), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(131), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(109), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(113), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(113), - [sym_private_property_identifier] = ACTIONS(115), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(133), - [aux_sym_method_definition_token1] = ACTIONS(119), - [anon_sym_get] = ACTIONS(135), - [anon_sym_set] = ACTIONS(135), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(117), + [sym_private_property_identifier] = ACTIONS(119), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(121), + [aux_sym_method_definition_token1] = ACTIONS(123), + [anon_sym_get] = ACTIONS(125), + [anon_sym_set] = ACTIONS(125), [sym_html_comment] = ACTIONS(5), }, - [5] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(16), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1661), - [sym_object_assignment_pattern] = STATE(1281), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1661), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1661), - [sym_spread_element] = STATE(1289), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(743), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [sym_rest_pattern] = STATE(1281), - [sym_method_definition] = STATE(1289), - [sym_pair] = STATE(1289), - [sym_pair_pattern] = STATE(1281), - [sym__property_name] = STATE(1290), - [sym_computed_property_name] = STATE(1290), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(903), - [aux_sym_object_repeat1] = STATE(1309), - [aux_sym_object_pattern_repeat1] = STATE(1312), - [sym_identifier] = ACTIONS(123), - [anon_sym_export] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(99), + [STATE(5)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(24), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1853), + [sym_object_assignment_pattern] = STATE(1454), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1853), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1853), + [sym_spread_element] = STATE(1458), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(815), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [sym_rest_pattern] = STATE(1454), + [sym_method_definition] = STATE(1458), + [sym_pair] = STATE(1458), + [sym_pair_pattern] = STATE(1454), + [sym__property_name] = STATE(1407), + [sym_computed_property_name] = STATE(1407), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_export_statement_repeat1] = STATE(1014), + [aux_sym_object_repeat1] = STATE(1461), + [aux_sym_object_pattern_repeat1] = STATE(1476), + [sym_identifier] = ACTIONS(131), + [anon_sym_export] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(101), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_RBRACE] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(103), + [anon_sym_RBRACE] = ACTIONS(135), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(129), + [anon_sym_let] = ACTIONS(137), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(131), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(139), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(141), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(113), - [sym_private_property_identifier] = ACTIONS(115), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(133), - [aux_sym_method_definition_token1] = ACTIONS(119), - [anon_sym_get] = ACTIONS(135), - [anon_sym_set] = ACTIONS(135), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(117), + [sym_private_property_identifier] = ACTIONS(119), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(143), + [aux_sym_method_definition_token1] = ACTIONS(123), + [anon_sym_get] = ACTIONS(145), + [anon_sym_set] = ACTIONS(145), [sym_html_comment] = ACTIONS(5), }, - [6] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(12), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1661), - [sym_object_assignment_pattern] = STATE(1281), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1661), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1661), - [sym_spread_element] = STATE(1333), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(743), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [sym_rest_pattern] = STATE(1281), - [sym_method_definition] = STATE(1333), - [sym_pair] = STATE(1333), - [sym_pair_pattern] = STATE(1281), - [sym__property_name] = STATE(1290), - [sym_computed_property_name] = STATE(1290), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(903), - [aux_sym_object_repeat1] = STATE(1334), - [aux_sym_object_pattern_repeat1] = STATE(1312), - [sym_identifier] = ACTIONS(141), - [anon_sym_export] = ACTIONS(143), - [anon_sym_STAR] = ACTIONS(99), + [STATE(6)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(24), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1853), + [sym_object_assignment_pattern] = STATE(1454), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1853), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1853), + [sym_spread_element] = STATE(1458), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(815), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [sym_rest_pattern] = STATE(1454), + [sym_method_definition] = STATE(1458), + [sym_pair] = STATE(1458), + [sym_pair_pattern] = STATE(1454), + [sym__property_name] = STATE(1407), + [sym_computed_property_name] = STATE(1407), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_export_statement_repeat1] = STATE(1014), + [aux_sym_object_repeat1] = STATE(1461), + [aux_sym_object_pattern_repeat1] = STATE(1476), + [sym_identifier] = ACTIONS(147), + [anon_sym_export] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(101), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_RBRACE] = ACTIONS(103), + [anon_sym_COMMA] = ACTIONS(103), + [anon_sym_RBRACE] = ACTIONS(135), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(145), + [anon_sym_let] = ACTIONS(151), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(147), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(113), - [sym_private_property_identifier] = ACTIONS(115), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(149), - [aux_sym_method_definition_token1] = ACTIONS(119), - [anon_sym_get] = ACTIONS(151), - [anon_sym_set] = ACTIONS(151), - [sym_html_comment] = ACTIONS(5), - }, - [7] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), - [ts_builtin_sym_end] = ACTIONS(153), - [sym_identifier] = ACTIONS(155), - [anon_sym_export] = ACTIONS(158), - [anon_sym_default] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(163), - [anon_sym_RBRACE] = ACTIONS(153), - [anon_sym_import] = ACTIONS(166), - [anon_sym_with] = ACTIONS(169), - [anon_sym_var] = ACTIONS(172), - [anon_sym_let] = ACTIONS(175), - [anon_sym_const] = ACTIONS(178), - [anon_sym_if] = ACTIONS(181), - [anon_sym_switch] = ACTIONS(184), - [anon_sym_for] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(190), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym_await] = ACTIONS(196), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(202), - [anon_sym_try] = ACTIONS(205), - [anon_sym_break] = ACTIONS(208), - [anon_sym_continue] = ACTIONS(211), - [anon_sym_debugger] = ACTIONS(214), - [anon_sym_return] = ACTIONS(217), - [anon_sym_throw] = ACTIONS(220), - [anon_sym_case] = ACTIONS(161), - [anon_sym_yield] = ACTIONS(223), - [anon_sym_LBRACK] = ACTIONS(226), - [anon_sym_LT] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(232), - [anon_sym_SQUOTE] = ACTIONS(235), - [anon_sym_class] = ACTIONS(238), - [anon_sym_async] = ACTIONS(241), - [anon_sym_function] = ACTIONS(244), - [anon_sym_new] = ACTIONS(247), - [anon_sym_PLUS] = ACTIONS(250), - [anon_sym_DASH] = ACTIONS(250), - [anon_sym_SLASH] = ACTIONS(253), - [anon_sym_BANG] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(256), - [anon_sym_typeof] = ACTIONS(250), - [anon_sym_void] = ACTIONS(250), - [anon_sym_delete] = ACTIONS(250), - [anon_sym_PLUS_PLUS] = ACTIONS(259), - [anon_sym_DASH_DASH] = ACTIONS(259), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(153), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(111), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(155), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(262), - [sym_number] = ACTIONS(265), - [sym_private_property_identifier] = ACTIONS(268), - [sym_this] = ACTIONS(271), - [sym_super] = ACTIONS(271), - [sym_true] = ACTIONS(271), - [sym_false] = ACTIONS(271), - [sym_null] = ACTIONS(271), - [sym_undefined] = ACTIONS(274), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_static] = ACTIONS(280), - [anon_sym_get] = ACTIONS(280), - [anon_sym_set] = ACTIONS(280), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(117), + [sym_private_property_identifier] = ACTIONS(119), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(157), + [aux_sym_method_definition_token1] = ACTIONS(123), + [anon_sym_get] = ACTIONS(159), + [anon_sym_set] = ACTIONS(159), [sym_html_comment] = ACTIONS(5), }, - [8] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(11), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(1166), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(285), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_case] = ACTIONS(283), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(7)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(692), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [aux_sym_object_repeat1] = STATE(1487), + [aux_sym_object_pattern_repeat1] = STATE(1452), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_RBRACE] = ACTIONS(171), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_using] = ACTIONS(175), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_EQ_GT] = ACTIONS(200), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(204), + [anon_sym_DASH] = ACTIONS(204), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(210), + [anon_sym_DASH_DASH] = ACTIONS(210), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(213), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, - [9] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(287), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(289), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_case] = ACTIONS(287), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(8)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(692), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [aux_sym_object_repeat1] = STATE(1418), + [aux_sym_object_pattern_repeat1] = STATE(1452), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_RBRACE] = ACTIONS(216), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_using] = ACTIONS(175), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_EQ_GT] = ACTIONS(200), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(204), + [anon_sym_DASH] = ACTIONS(204), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(210), + [anon_sym_DASH_DASH] = ACTIONS(210), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(213), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, - [10] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), + [STATE(9)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), [sym_statement] = STATE(9), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(1166), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(293), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_case] = ACTIONS(291), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [aux_sym_export_statement_repeat1] = STATE(1267), + [ts_builtin_sym_end] = ACTIONS(218), + [sym_identifier] = ACTIONS(220), + [anon_sym_export] = ACTIONS(223), + [anon_sym_default] = ACTIONS(226), + [anon_sym_LBRACE] = ACTIONS(228), + [anon_sym_RBRACE] = ACTIONS(218), + [anon_sym_import] = ACTIONS(231), + [anon_sym_with] = ACTIONS(234), + [anon_sym_var] = ACTIONS(237), + [anon_sym_let] = ACTIONS(240), + [anon_sym_const] = ACTIONS(243), + [anon_sym_using] = ACTIONS(246), + [anon_sym_await] = ACTIONS(249), + [anon_sym_if] = ACTIONS(252), + [anon_sym_switch] = ACTIONS(255), + [anon_sym_for] = ACTIONS(258), + [anon_sym_LPAREN] = ACTIONS(261), + [anon_sym_SEMI] = ACTIONS(264), + [anon_sym_while] = ACTIONS(267), + [anon_sym_do] = ACTIONS(270), + [anon_sym_try] = ACTIONS(273), + [anon_sym_break] = ACTIONS(276), + [anon_sym_continue] = ACTIONS(279), + [anon_sym_debugger] = ACTIONS(282), + [anon_sym_return] = ACTIONS(285), + [anon_sym_throw] = ACTIONS(288), + [anon_sym_case] = ACTIONS(226), + [anon_sym_yield] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(294), + [anon_sym_LT] = ACTIONS(297), + [anon_sym_DQUOTE] = ACTIONS(300), + [anon_sym_SQUOTE] = ACTIONS(303), + [anon_sym_class] = ACTIONS(306), + [anon_sym_async] = ACTIONS(309), + [anon_sym_function] = ACTIONS(312), + [anon_sym_new] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(318), + [anon_sym_DASH] = ACTIONS(318), + [anon_sym_SLASH] = ACTIONS(321), + [anon_sym_BANG] = ACTIONS(324), + [anon_sym_TILDE] = ACTIONS(324), + [anon_sym_typeof] = ACTIONS(318), + [anon_sym_void] = ACTIONS(318), + [anon_sym_delete] = ACTIONS(318), + [anon_sym_PLUS_PLUS] = ACTIONS(327), + [anon_sym_DASH_DASH] = ACTIONS(327), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(330), + [sym_number] = ACTIONS(333), + [sym_private_property_identifier] = ACTIONS(336), + [sym_this] = ACTIONS(339), + [sym_super] = ACTIONS(339), + [sym_true] = ACTIONS(339), + [sym_false] = ACTIONS(339), + [sym_null] = ACTIONS(339), + [sym_undefined] = ACTIONS(342), + [anon_sym_AT] = ACTIONS(345), + [anon_sym_static] = ACTIONS(348), + [anon_sym_get] = ACTIONS(348), + [anon_sym_set] = ACTIONS(348), [sym_html_comment] = ACTIONS(5), }, - [11] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_default] = ACTIONS(295), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(297), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_case] = ACTIONS(295), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(10)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(692), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [aux_sym_object_repeat1] = STATE(1418), + [aux_sym_object_pattern_repeat1] = STATE(1452), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_RBRACE] = ACTIONS(351), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_using] = ACTIONS(175), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(183), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_EQ_GT] = ACTIONS(200), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(204), + [anon_sym_DASH] = ACTIONS(204), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(210), + [anon_sym_DASH_DASH] = ACTIONS(210), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(213), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, - [12] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(11)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(12), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(1267), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), + [anon_sym_default] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(299), + [anon_sym_RBRACE] = ACTIONS(355), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_case] = ACTIONS(353), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [13] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(20), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(1166), - [ts_builtin_sym_end] = ACTIONS(301), + [STATE(12)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(1267), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), + [anon_sym_default] = ACTIONS(357), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(359), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_case] = ACTIONS(357), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [14] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(13)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(1267), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), + [anon_sym_default] = ACTIONS(361), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(303), + [anon_sym_RBRACE] = ACTIONS(363), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_case] = ACTIONS(361), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [15] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(14), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(14)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(13), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(1267), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), + [anon_sym_default] = ACTIONS(365), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(305), + [anon_sym_RBRACE] = ACTIONS(367), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_case] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [16] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(307), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(15)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(587), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_RBRACE] = ACTIONS(169), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_RPAREN] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(169), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_EQ] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(386), + [anon_sym_RBRACK] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_EQ_GT] = ACTIONS(402), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(416), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(419), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, - [17] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(16), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(1166), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(309), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(16)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(587), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_RBRACE] = ACTIONS(169), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_RPAREN] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(169), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_RBRACK] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_EQ_GT] = ACTIONS(402), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(456), + [anon_sym_DASH_DASH] = ACTIONS(456), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(419), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, - [18] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), - [ts_builtin_sym_end] = ACTIONS(301), + [STATE(17)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(21), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_program_repeat1] = STATE(21), + [aux_sym_export_statement_repeat1] = STATE(1267), + [ts_builtin_sym_end] = ACTIONS(463), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -10668,3640 +11307,3109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [19] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(12), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(18)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(1267), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(311), + [anon_sym_RBRACE] = ACTIONS(465), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [20] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), - [ts_builtin_sym_end] = ACTIONS(313), + [STATE(19)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(18), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(1267), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(467), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [21] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(20)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(1267), + [ts_builtin_sym_end] = ACTIONS(463), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(315), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [22] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(21), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(21)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(1267), + [ts_builtin_sym_end] = ACTIONS(469), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(317), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [23] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(24), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(22)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(1267), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(471), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [24] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(7), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(23)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(22), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(1267), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_RBRACE] = ACTIONS(321), + [anon_sym_RBRACE] = ACTIONS(473), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [sym_html_comment] = ACTIONS(5), - }, - [25] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(384), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [26] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(377), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(24)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(1267), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(475), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [27] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(416), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(25)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(24), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_export_statement_repeat1] = STATE(1267), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(477), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [28] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(361), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(26)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(1267), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(479), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [29] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(422), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(27)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(26), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_export_statement_repeat1] = STATE(1267), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(481), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [sym_html_comment] = ACTIONS(5), - }, - [30] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(414), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [31] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(414), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(28)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(30), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_program_repeat1] = STATE(30), + [aux_sym_export_statement_repeat1] = STATE(1267), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(483), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [sym_html_comment] = ACTIONS(5), - }, - [32] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(1323), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), - [sym_html_comment] = ACTIONS(5), - }, - [33] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(416), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [34] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(361), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(29)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(692), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_using] = ACTIONS(175), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(488), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_EQ_GT] = ACTIONS(200), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(204), + [anon_sym_DASH] = ACTIONS(204), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(210), + [anon_sym_DASH_DASH] = ACTIONS(210), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(213), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, - [35] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(384), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(30)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(1267), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(492), [anon_sym_import] = ACTIONS(17), [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), - [sym_html_comment] = ACTIONS(5), - }, - [36] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(420), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [37] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(374), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(31)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(692), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_using] = ACTIONS(175), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(494), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_EQ_GT] = ACTIONS(200), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(204), + [anon_sym_DASH] = ACTIONS(204), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(210), + [anon_sym_DASH_DASH] = ACTIONS(210), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(213), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, - [38] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(422), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(32)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(587), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_COMMA] = ACTIONS(496), + [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(496), + [anon_sym_in] = ACTIONS(165), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_RBRACK] = ACTIONS(496), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_EQ_GT] = ACTIONS(498), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(456), + [anon_sym_DASH_DASH] = ACTIONS(456), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(419), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, - [39] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(362), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(33)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(587), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_of] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_EQ_GT] = ACTIONS(500), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(456), + [anon_sym_DASH_DASH] = ACTIONS(456), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(419), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, - [40] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(374), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(34)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(587), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_using] = ACTIONS(502), + [anon_sym_await] = ACTIONS(377), + [anon_sym_of] = ACTIONS(504), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(506), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_EQ] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(386), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_EQ_GT] = ACTIONS(402), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(416), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(419), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, - [41] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(363), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(35)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(587), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_RBRACE] = ACTIONS(169), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_EQ_GT] = ACTIONS(200), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(456), + [anon_sym_DASH_DASH] = ACTIONS(456), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(419), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, - [42] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(366), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(36)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(587), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_RBRACE] = ACTIONS(509), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(509), + [anon_sym_in] = ACTIONS(165), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_EQ] = ACTIONS(511), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_RBRACK] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_EQ_GT] = ACTIONS(498), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(456), + [anon_sym_DASH_DASH] = ACTIONS(456), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(419), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, - [43] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(370), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(37)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(692), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_RBRACE] = ACTIONS(169), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_EQ_GT] = ACTIONS(200), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(204), + [anon_sym_DASH] = ACTIONS(204), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(210), + [anon_sym_DASH_DASH] = ACTIONS(210), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(213), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, - [44] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(372), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(38)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(587), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_RBRACE] = ACTIONS(514), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(514), + [anon_sym_in] = ACTIONS(165), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_EQ] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(386), + [anon_sym_RBRACK] = ACTIONS(514), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_EQ_GT] = ACTIONS(402), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(416), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(419), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, - [45] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(377), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), - [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), - [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(39)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(560), + [sym_expression] = STATE(692), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1802), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1802), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(560), + [sym_subscript_expression] = STATE(560), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1143), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1802), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1803), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_of] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_EQ] = ACTIONS(528), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(530), + [anon_sym_function] = ACTIONS(198), + [anon_sym_EQ_GT] = ACTIONS(500), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_new] = ACTIONS(532), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(534), + [anon_sym_DASH] = ACTIONS(534), + [anon_sym_SLASH] = ACTIONS(537), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(540), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_typeof] = ACTIONS(540), + [anon_sym_void] = ACTIONS(540), + [anon_sym_delete] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(544), + [anon_sym_DASH_DASH] = ACTIONS(544), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(213), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(547), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, - [46] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(362), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), + [STATE(40)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(1403), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1306), + [sym_identifier] = ACTIONS(551), + [anon_sym_export] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(19), + [anon_sym_with] = ACTIONS(557), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(23), + [anon_sym_let] = ACTIONS(559), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(561), + [anon_sym_if] = ACTIONS(563), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(567), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(569), + [anon_sym_async] = ACTIONS(571), + [anon_sym_function] = ACTIONS(573), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(575), + [anon_sym_get] = ACTIONS(575), + [anon_sym_set] = ACTIONS(575), [sym_html_comment] = ACTIONS(5), }, - [47] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(1653), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), + [STATE(41)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(1755), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1306), + [sym_identifier] = ACTIONS(551), + [anon_sym_export] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), + [anon_sym_with] = ACTIONS(557), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), + [anon_sym_let] = ACTIONS(559), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(561), + [anon_sym_if] = ACTIONS(563), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(567), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(569), + [anon_sym_async] = ACTIONS(571), + [anon_sym_function] = ACTIONS(573), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(575), + [anon_sym_get] = ACTIONS(575), + [anon_sym_set] = ACTIONS(575), [sym_html_comment] = ACTIONS(5), }, - [48] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(425), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(42)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(424), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1267), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14310,119 +14418,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [49] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(363), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(43)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(448), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1267), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14431,119 +14541,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [50] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(345), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(44)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(463), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1267), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14552,119 +14664,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [51] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(366), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(45)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(464), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1267), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14673,119 +14787,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [52] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(420), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(46)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(466), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1267), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14794,119 +14910,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [53] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(370), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(47)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(479), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1267), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -14915,119 +15033,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [54] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(372), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1166), + [STATE(48)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(480), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1267), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(15), @@ -15036,22031 +15156,28566 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_var] = ACTIONS(21), [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(27), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(67), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(93), - [anon_sym_get] = ACTIONS(93), - [anon_sym_set] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [55] = { - [sym_export_statement] = STATE(385), - [sym_declaration] = STATE(385), - [sym_import] = STATE(1232), - [sym_import_statement] = STATE(385), - [sym_statement] = STATE(425), - [sym_expression_statement] = STATE(385), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_statement_block] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_for_in_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_try_statement] = STATE(385), - [sym_with_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_debugger_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(385), - [sym_empty_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(745), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1435), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1142), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), - [anon_sym_LBRACE] = ACTIONS(327), + [STATE(49)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(481), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1267), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_import] = ACTIONS(17), - [anon_sym_with] = ACTIONS(329), + [anon_sym_with] = ACTIONS(19), [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(331), + [anon_sym_let] = ACTIONS(23), [anon_sym_const] = ACTIONS(25), - [anon_sym_if] = ACTIONS(333), - [anon_sym_switch] = ACTIONS(29), - [anon_sym_for] = ACTIONS(335), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(37), - [anon_sym_while] = ACTIONS(337), - [anon_sym_do] = ACTIONS(41), - [anon_sym_try] = ACTIONS(43), - [anon_sym_break] = ACTIONS(45), - [anon_sym_continue] = ACTIONS(47), - [anon_sym_debugger] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_throw] = ACTIONS(53), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(341), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), - [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(345), - [anon_sym_get] = ACTIONS(345), - [anon_sym_set] = ACTIONS(345), - [sym_html_comment] = ACTIONS(5), - }, - [56] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(581), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_STAR] = ACTIONS(351), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_COMMA] = ACTIONS(355), - [anon_sym_RBRACE] = ACTIONS(355), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(355), - [anon_sym_RPAREN] = ACTIONS(355), - [anon_sym_await] = ACTIONS(361), - [anon_sym_in] = ACTIONS(363), - [anon_sym_COLON] = ACTIONS(355), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_RBRACK] = ACTIONS(355), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(363), - [anon_sym_DOT] = ACTIONS(363), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [sym_optional_chain] = ACTIONS(355), - [anon_sym_new] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(363), - [anon_sym_GT_GT_GT] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_CARET] = ACTIONS(355), - [anon_sym_PIPE] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(355), - [anon_sym_STAR_STAR] = ACTIONS(355), - [anon_sym_LT_EQ] = ACTIONS(355), - [anon_sym_EQ_EQ] = ACTIONS(363), - [anon_sym_EQ_EQ_EQ] = ACTIONS(355), - [anon_sym_BANG_EQ] = ACTIONS(363), - [anon_sym_BANG_EQ_EQ] = ACTIONS(355), - [anon_sym_GT_EQ] = ACTIONS(355), - [anon_sym_QMARK_QMARK] = ACTIONS(355), - [anon_sym_instanceof] = ACTIONS(363), - [anon_sym_BANG] = ACTIONS(383), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), - [sym__ternary_qmark] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [57] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(732), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_COMMA] = ACTIONS(355), - [anon_sym_RBRACE] = ACTIONS(355), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(355), - [anon_sym_await] = ACTIONS(37), - [anon_sym_in] = ACTIONS(363), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(363), - [anon_sym_DOT] = ACTIONS(363), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [sym_optional_chain] = ACTIONS(355), - [anon_sym_new] = ACTIONS(71), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(363), - [anon_sym_GT_GT_GT] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_CARET] = ACTIONS(355), - [anon_sym_PIPE] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_PERCENT] = ACTIONS(355), - [anon_sym_STAR_STAR] = ACTIONS(355), - [anon_sym_LT_EQ] = ACTIONS(355), - [anon_sym_EQ_EQ] = ACTIONS(363), - [anon_sym_EQ_EQ_EQ] = ACTIONS(355), - [anon_sym_BANG_EQ] = ACTIONS(363), - [anon_sym_BANG_EQ_EQ] = ACTIONS(355), - [anon_sym_GT_EQ] = ACTIONS(355), - [anon_sym_QMARK_QMARK] = ACTIONS(355), - [anon_sym_instanceof] = ACTIONS(363), - [anon_sym_BANG] = ACTIONS(73), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(50)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(483), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1267), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), - [sym__automatic_semicolon] = ACTIONS(355), - [sym__ternary_qmark] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [58] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(727), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_STAR] = ACTIONS(423), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_COMMA] = ACTIONS(355), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(355), - [anon_sym_await] = ACTIONS(425), - [anon_sym_in] = ACTIONS(363), - [anon_sym_of] = ACTIONS(363), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(363), - [anon_sym_DOT] = ACTIONS(363), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [sym_optional_chain] = ACTIONS(355), - [anon_sym_new] = ACTIONS(431), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(363), - [anon_sym_GT_GT_GT] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_CARET] = ACTIONS(355), - [anon_sym_PIPE] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_PERCENT] = ACTIONS(355), - [anon_sym_STAR_STAR] = ACTIONS(355), - [anon_sym_LT_EQ] = ACTIONS(355), - [anon_sym_EQ_EQ] = ACTIONS(363), - [anon_sym_EQ_EQ_EQ] = ACTIONS(355), - [anon_sym_BANG_EQ] = ACTIONS(363), - [anon_sym_BANG_EQ_EQ] = ACTIONS(355), - [anon_sym_GT_EQ] = ACTIONS(355), - [anon_sym_QMARK_QMARK] = ACTIONS(355), - [anon_sym_instanceof] = ACTIONS(363), - [anon_sym_BANG] = ACTIONS(433), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(51)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(587), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_COMMA] = ACTIONS(577), + [anon_sym_RBRACE] = ACTIONS(577), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_in] = ACTIONS(165), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_EQ] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(386), + [anon_sym_RBRACK] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_EQ_GT] = ACTIONS(402), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(416), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), - [sym__automatic_semicolon] = ACTIONS(355), - [sym__ternary_qmark] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(419), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, - [59] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(796), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_STAR] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_in] = ACTIONS(363), - [anon_sym_COLON] = ACTIONS(355), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(363), - [anon_sym_DOT] = ACTIONS(363), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [sym_optional_chain] = ACTIONS(355), - [anon_sym_new] = ACTIONS(461), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(363), - [anon_sym_GT_GT_GT] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_CARET] = ACTIONS(355), - [anon_sym_PIPE] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_PERCENT] = ACTIONS(355), - [anon_sym_STAR_STAR] = ACTIONS(355), - [anon_sym_LT_EQ] = ACTIONS(355), - [anon_sym_EQ_EQ] = ACTIONS(363), - [anon_sym_EQ_EQ_EQ] = ACTIONS(355), - [anon_sym_BANG_EQ] = ACTIONS(363), - [anon_sym_BANG_EQ_EQ] = ACTIONS(355), - [anon_sym_GT_EQ] = ACTIONS(355), - [anon_sym_QMARK_QMARK] = ACTIONS(355), - [anon_sym_instanceof] = ACTIONS(363), - [anon_sym_BANG] = ACTIONS(463), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(52)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(452), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1306), + [sym_identifier] = ACTIONS(551), + [anon_sym_export] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(557), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(559), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(561), + [anon_sym_if] = ACTIONS(563), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(567), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(569), + [anon_sym_async] = ACTIONS(571), + [anon_sym_function] = ACTIONS(573), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), - [sym__ternary_qmark] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(575), + [anon_sym_get] = ACTIONS(575), + [anon_sym_set] = ACTIONS(575), [sym_html_comment] = ACTIONS(5), }, - [60] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(856), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_STAR] = ACTIONS(477), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_in] = ACTIONS(363), - [anon_sym_of] = ACTIONS(363), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(369), - [anon_sym_GT] = ACTIONS(363), - [anon_sym_DOT] = ACTIONS(363), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [sym_optional_chain] = ACTIONS(355), - [anon_sym_new] = ACTIONS(485), - [anon_sym_AMP_AMP] = ACTIONS(355), - [anon_sym_PIPE_PIPE] = ACTIONS(355), - [anon_sym_GT_GT] = ACTIONS(363), - [anon_sym_GT_GT_GT] = ACTIONS(355), - [anon_sym_LT_LT] = ACTIONS(355), - [anon_sym_AMP] = ACTIONS(363), - [anon_sym_CARET] = ACTIONS(355), - [anon_sym_PIPE] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(355), - [anon_sym_STAR_STAR] = ACTIONS(355), - [anon_sym_LT_EQ] = ACTIONS(355), - [anon_sym_EQ_EQ] = ACTIONS(363), - [anon_sym_EQ_EQ_EQ] = ACTIONS(355), - [anon_sym_BANG_EQ] = ACTIONS(363), - [anon_sym_BANG_EQ_EQ] = ACTIONS(355), - [anon_sym_GT_EQ] = ACTIONS(355), - [anon_sym_QMARK_QMARK] = ACTIONS(355), - [anon_sym_instanceof] = ACTIONS(363), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(53)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(444), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1267), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), - [sym__ternary_qmark] = ACTIONS(355), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [61] = { - [ts_builtin_sym_end] = ACTIONS(499), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(501), - [anon_sym_STAR] = ACTIONS(501), - [anon_sym_default] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_COMMA] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(499), - [anon_sym_import] = ACTIONS(501), - [anon_sym_with] = ACTIONS(501), - [anon_sym_var] = ACTIONS(501), - [anon_sym_let] = ACTIONS(501), - [anon_sym_const] = ACTIONS(501), - [anon_sym_else] = ACTIONS(501), - [anon_sym_if] = ACTIONS(501), - [anon_sym_switch] = ACTIONS(501), - [anon_sym_for] = ACTIONS(501), - [anon_sym_LPAREN] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(499), - [anon_sym_await] = ACTIONS(501), - [anon_sym_in] = ACTIONS(501), - [anon_sym_of] = ACTIONS(501), - [anon_sym_while] = ACTIONS(501), - [anon_sym_do] = ACTIONS(501), - [anon_sym_try] = ACTIONS(501), - [anon_sym_break] = ACTIONS(501), - [anon_sym_continue] = ACTIONS(501), - [anon_sym_debugger] = ACTIONS(501), - [anon_sym_return] = ACTIONS(501), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_case] = ACTIONS(501), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(499), - [anon_sym_LT] = ACTIONS(501), - [anon_sym_GT] = ACTIONS(501), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_DQUOTE] = ACTIONS(499), - [anon_sym_SQUOTE] = ACTIONS(499), - [anon_sym_class] = ACTIONS(501), - [anon_sym_async] = ACTIONS(501), - [anon_sym_function] = ACTIONS(501), - [sym_optional_chain] = ACTIONS(499), - [anon_sym_new] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(499), - [anon_sym_PIPE_PIPE] = ACTIONS(499), - [anon_sym_GT_GT] = ACTIONS(501), - [anon_sym_GT_GT_GT] = ACTIONS(499), - [anon_sym_LT_LT] = ACTIONS(499), - [anon_sym_AMP] = ACTIONS(501), - [anon_sym_CARET] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(501), - [anon_sym_DASH] = ACTIONS(501), - [anon_sym_SLASH] = ACTIONS(501), - [anon_sym_PERCENT] = ACTIONS(499), - [anon_sym_STAR_STAR] = ACTIONS(499), - [anon_sym_LT_EQ] = ACTIONS(499), - [anon_sym_EQ_EQ] = ACTIONS(501), - [anon_sym_EQ_EQ_EQ] = ACTIONS(499), - [anon_sym_BANG_EQ] = ACTIONS(501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(499), - [anon_sym_GT_EQ] = ACTIONS(499), - [anon_sym_QMARK_QMARK] = ACTIONS(499), - [anon_sym_instanceof] = ACTIONS(501), - [anon_sym_BANG] = ACTIONS(501), - [anon_sym_TILDE] = ACTIONS(499), - [anon_sym_typeof] = ACTIONS(501), - [anon_sym_void] = ACTIONS(501), - [anon_sym_delete] = ACTIONS(501), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), + [STATE(54)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(473), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1306), + [sym_identifier] = ACTIONS(551), + [anon_sym_export] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(557), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(559), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(561), + [anon_sym_if] = ACTIONS(563), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(567), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(569), + [anon_sym_async] = ACTIONS(571), + [anon_sym_function] = ACTIONS(573), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(499), - [sym_number] = ACTIONS(499), - [sym_private_property_identifier] = ACTIONS(499), - [sym_this] = ACTIONS(501), - [sym_super] = ACTIONS(501), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_null] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), - [anon_sym_AT] = ACTIONS(499), - [anon_sym_static] = ACTIONS(501), - [anon_sym_get] = ACTIONS(501), - [anon_sym_set] = ACTIONS(501), - [sym__automatic_semicolon] = ACTIONS(499), - [sym__ternary_qmark] = ACTIONS(499), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(575), + [anon_sym_get] = ACTIONS(575), + [anon_sym_set] = ACTIONS(575), [sym_html_comment] = ACTIONS(5), }, - [62] = { - [ts_builtin_sym_end] = ACTIONS(503), - [sym_identifier] = ACTIONS(505), - [anon_sym_export] = ACTIONS(505), - [anon_sym_STAR] = ACTIONS(507), - [anon_sym_default] = ACTIONS(505), - [anon_sym_LBRACE] = ACTIONS(503), - [anon_sym_COMMA] = ACTIONS(509), - [anon_sym_RBRACE] = ACTIONS(503), - [anon_sym_import] = ACTIONS(505), - [anon_sym_with] = ACTIONS(505), - [anon_sym_var] = ACTIONS(505), - [anon_sym_let] = ACTIONS(505), - [anon_sym_const] = ACTIONS(505), - [anon_sym_else] = ACTIONS(505), - [anon_sym_if] = ACTIONS(505), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_for] = ACTIONS(505), - [anon_sym_LPAREN] = ACTIONS(503), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_await] = ACTIONS(505), - [anon_sym_in] = ACTIONS(507), - [anon_sym_while] = ACTIONS(505), - [anon_sym_do] = ACTIONS(505), - [anon_sym_try] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_debugger] = ACTIONS(505), - [anon_sym_return] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(505), - [anon_sym_case] = ACTIONS(505), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_EQ] = ACTIONS(511), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(505), - [anon_sym_GT] = ACTIONS(507), - [anon_sym_DOT] = ACTIONS(507), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(503), - [anon_sym_class] = ACTIONS(505), - [anon_sym_async] = ACTIONS(505), - [anon_sym_function] = ACTIONS(505), - [sym_optional_chain] = ACTIONS(509), - [anon_sym_new] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(509), - [anon_sym_PIPE_PIPE] = ACTIONS(509), - [anon_sym_GT_GT] = ACTIONS(507), - [anon_sym_GT_GT_GT] = ACTIONS(509), - [anon_sym_LT_LT] = ACTIONS(509), - [anon_sym_AMP] = ACTIONS(507), - [anon_sym_CARET] = ACTIONS(509), - [anon_sym_PIPE] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(505), - [anon_sym_DASH] = ACTIONS(505), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_PERCENT] = ACTIONS(509), - [anon_sym_STAR_STAR] = ACTIONS(509), - [anon_sym_LT_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ] = ACTIONS(507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ] = ACTIONS(507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(509), - [anon_sym_GT_EQ] = ACTIONS(509), - [anon_sym_QMARK_QMARK] = ACTIONS(509), - [anon_sym_instanceof] = ACTIONS(507), - [anon_sym_BANG] = ACTIONS(505), - [anon_sym_TILDE] = ACTIONS(503), - [anon_sym_typeof] = ACTIONS(505), - [anon_sym_void] = ACTIONS(505), - [anon_sym_delete] = ACTIONS(505), - [anon_sym_PLUS_PLUS] = ACTIONS(503), - [anon_sym_DASH_DASH] = ACTIONS(503), + [STATE(55)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(429), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1306), + [sym_identifier] = ACTIONS(551), + [anon_sym_export] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(557), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(559), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(561), + [anon_sym_if] = ACTIONS(563), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(567), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(569), + [anon_sym_async] = ACTIONS(571), + [anon_sym_function] = ACTIONS(573), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(503), - [sym_number] = ACTIONS(503), - [sym_private_property_identifier] = ACTIONS(503), - [sym_this] = ACTIONS(505), - [sym_super] = ACTIONS(505), - [sym_true] = ACTIONS(505), - [sym_false] = ACTIONS(505), - [sym_null] = ACTIONS(505), - [sym_undefined] = ACTIONS(505), - [anon_sym_AT] = ACTIONS(503), - [anon_sym_static] = ACTIONS(505), - [anon_sym_get] = ACTIONS(505), - [anon_sym_set] = ACTIONS(505), - [sym__automatic_semicolon] = ACTIONS(513), - [sym__ternary_qmark] = ACTIONS(509), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(575), + [anon_sym_get] = ACTIONS(575), + [anon_sym_set] = ACTIONS(575), [sym_html_comment] = ACTIONS(5), }, - [63] = { - [ts_builtin_sym_end] = ACTIONS(499), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(501), - [anon_sym_STAR] = ACTIONS(501), - [anon_sym_default] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_COMMA] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(499), - [anon_sym_import] = ACTIONS(501), - [anon_sym_with] = ACTIONS(501), - [anon_sym_var] = ACTIONS(501), - [anon_sym_let] = ACTIONS(501), - [anon_sym_const] = ACTIONS(501), - [anon_sym_else] = ACTIONS(501), - [anon_sym_if] = ACTIONS(501), - [anon_sym_switch] = ACTIONS(501), - [anon_sym_for] = ACTIONS(501), - [anon_sym_LPAREN] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(499), - [anon_sym_await] = ACTIONS(501), - [anon_sym_in] = ACTIONS(501), - [anon_sym_of] = ACTIONS(501), - [anon_sym_while] = ACTIONS(501), - [anon_sym_do] = ACTIONS(501), - [anon_sym_try] = ACTIONS(501), - [anon_sym_break] = ACTIONS(501), - [anon_sym_continue] = ACTIONS(501), - [anon_sym_debugger] = ACTIONS(501), - [anon_sym_return] = ACTIONS(501), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_case] = ACTIONS(501), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(499), - [anon_sym_LT] = ACTIONS(501), - [anon_sym_GT] = ACTIONS(501), - [anon_sym_DOT] = ACTIONS(501), - [anon_sym_DQUOTE] = ACTIONS(499), - [anon_sym_SQUOTE] = ACTIONS(499), - [anon_sym_class] = ACTIONS(501), - [anon_sym_async] = ACTIONS(501), - [anon_sym_function] = ACTIONS(501), - [sym_optional_chain] = ACTIONS(499), - [anon_sym_new] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(499), - [anon_sym_PIPE_PIPE] = ACTIONS(499), - [anon_sym_GT_GT] = ACTIONS(501), - [anon_sym_GT_GT_GT] = ACTIONS(499), - [anon_sym_LT_LT] = ACTIONS(499), - [anon_sym_AMP] = ACTIONS(501), - [anon_sym_CARET] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(501), - [anon_sym_DASH] = ACTIONS(501), - [anon_sym_SLASH] = ACTIONS(501), - [anon_sym_PERCENT] = ACTIONS(499), - [anon_sym_STAR_STAR] = ACTIONS(499), - [anon_sym_LT_EQ] = ACTIONS(499), - [anon_sym_EQ_EQ] = ACTIONS(501), - [anon_sym_EQ_EQ_EQ] = ACTIONS(499), - [anon_sym_BANG_EQ] = ACTIONS(501), - [anon_sym_BANG_EQ_EQ] = ACTIONS(499), - [anon_sym_GT_EQ] = ACTIONS(499), - [anon_sym_QMARK_QMARK] = ACTIONS(499), - [anon_sym_instanceof] = ACTIONS(501), - [anon_sym_BANG] = ACTIONS(501), - [anon_sym_TILDE] = ACTIONS(499), - [anon_sym_typeof] = ACTIONS(501), - [anon_sym_void] = ACTIONS(501), - [anon_sym_delete] = ACTIONS(501), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), + [STATE(56)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(432), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1306), + [sym_identifier] = ACTIONS(551), + [anon_sym_export] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(557), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(559), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(561), + [anon_sym_if] = ACTIONS(563), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(567), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(569), + [anon_sym_async] = ACTIONS(571), + [anon_sym_function] = ACTIONS(573), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(499), - [sym_number] = ACTIONS(499), - [sym_private_property_identifier] = ACTIONS(499), - [sym_this] = ACTIONS(501), - [sym_super] = ACTIONS(501), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_null] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), - [anon_sym_AT] = ACTIONS(499), - [anon_sym_static] = ACTIONS(501), - [anon_sym_get] = ACTIONS(501), - [anon_sym_set] = ACTIONS(501), - [sym__automatic_semicolon] = ACTIONS(515), - [sym__ternary_qmark] = ACTIONS(499), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(575), + [anon_sym_get] = ACTIONS(575), + [anon_sym_set] = ACTIONS(575), [sym_html_comment] = ACTIONS(5), }, - [64] = { - [ts_builtin_sym_end] = ACTIONS(503), - [sym_identifier] = ACTIONS(505), - [anon_sym_export] = ACTIONS(505), - [anon_sym_STAR] = ACTIONS(505), - [anon_sym_default] = ACTIONS(505), - [anon_sym_LBRACE] = ACTIONS(503), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(503), - [anon_sym_import] = ACTIONS(505), - [anon_sym_with] = ACTIONS(505), - [anon_sym_var] = ACTIONS(505), - [anon_sym_let] = ACTIONS(505), - [anon_sym_const] = ACTIONS(505), - [anon_sym_else] = ACTIONS(505), - [anon_sym_if] = ACTIONS(505), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_for] = ACTIONS(505), - [anon_sym_LPAREN] = ACTIONS(503), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_await] = ACTIONS(505), - [anon_sym_in] = ACTIONS(505), - [anon_sym_of] = ACTIONS(505), - [anon_sym_while] = ACTIONS(505), - [anon_sym_do] = ACTIONS(505), - [anon_sym_try] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_debugger] = ACTIONS(505), - [anon_sym_return] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(505), - [anon_sym_case] = ACTIONS(505), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(505), - [anon_sym_GT] = ACTIONS(505), - [anon_sym_DOT] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(503), - [anon_sym_class] = ACTIONS(505), - [anon_sym_async] = ACTIONS(505), - [anon_sym_function] = ACTIONS(505), - [sym_optional_chain] = ACTIONS(503), - [anon_sym_new] = ACTIONS(505), - [anon_sym_AMP_AMP] = ACTIONS(503), - [anon_sym_PIPE_PIPE] = ACTIONS(503), - [anon_sym_GT_GT] = ACTIONS(505), - [anon_sym_GT_GT_GT] = ACTIONS(503), - [anon_sym_LT_LT] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(505), - [anon_sym_CARET] = ACTIONS(503), - [anon_sym_PIPE] = ACTIONS(505), - [anon_sym_PLUS] = ACTIONS(505), - [anon_sym_DASH] = ACTIONS(505), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_PERCENT] = ACTIONS(503), - [anon_sym_STAR_STAR] = ACTIONS(503), - [anon_sym_LT_EQ] = ACTIONS(503), - [anon_sym_EQ_EQ] = ACTIONS(505), - [anon_sym_EQ_EQ_EQ] = ACTIONS(503), - [anon_sym_BANG_EQ] = ACTIONS(505), - [anon_sym_BANG_EQ_EQ] = ACTIONS(503), - [anon_sym_GT_EQ] = ACTIONS(503), - [anon_sym_QMARK_QMARK] = ACTIONS(503), - [anon_sym_instanceof] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(505), - [anon_sym_TILDE] = ACTIONS(503), - [anon_sym_typeof] = ACTIONS(505), - [anon_sym_void] = ACTIONS(505), - [anon_sym_delete] = ACTIONS(505), - [anon_sym_PLUS_PLUS] = ACTIONS(503), - [anon_sym_DASH_DASH] = ACTIONS(503), + [STATE(57)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(411), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1267), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(503), - [sym_number] = ACTIONS(503), - [sym_private_property_identifier] = ACTIONS(503), - [sym_this] = ACTIONS(505), - [sym_super] = ACTIONS(505), - [sym_true] = ACTIONS(505), - [sym_false] = ACTIONS(505), - [sym_null] = ACTIONS(505), - [sym_undefined] = ACTIONS(505), - [anon_sym_AT] = ACTIONS(503), - [anon_sym_static] = ACTIONS(505), - [anon_sym_get] = ACTIONS(505), - [anon_sym_set] = ACTIONS(505), - [sym__automatic_semicolon] = ACTIONS(517), - [sym__ternary_qmark] = ACTIONS(503), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [65] = { - [ts_builtin_sym_end] = ACTIONS(519), - [sym_identifier] = ACTIONS(521), - [anon_sym_export] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(521), - [anon_sym_default] = ACTIONS(521), - [anon_sym_LBRACE] = ACTIONS(519), - [anon_sym_COMMA] = ACTIONS(519), - [anon_sym_RBRACE] = ACTIONS(519), - [anon_sym_import] = ACTIONS(521), - [anon_sym_with] = ACTIONS(521), - [anon_sym_var] = ACTIONS(521), - [anon_sym_let] = ACTIONS(521), - [anon_sym_const] = ACTIONS(521), - [anon_sym_else] = ACTIONS(521), - [anon_sym_if] = ACTIONS(521), - [anon_sym_switch] = ACTIONS(521), - [anon_sym_for] = ACTIONS(521), - [anon_sym_LPAREN] = ACTIONS(519), - [anon_sym_SEMI] = ACTIONS(519), - [anon_sym_await] = ACTIONS(521), - [anon_sym_in] = ACTIONS(521), - [anon_sym_of] = ACTIONS(521), - [anon_sym_while] = ACTIONS(521), - [anon_sym_do] = ACTIONS(521), - [anon_sym_try] = ACTIONS(521), - [anon_sym_break] = ACTIONS(521), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_debugger] = ACTIONS(521), - [anon_sym_return] = ACTIONS(521), - [anon_sym_throw] = ACTIONS(521), - [anon_sym_case] = ACTIONS(521), - [anon_sym_yield] = ACTIONS(521), - [anon_sym_LBRACK] = ACTIONS(519), - [anon_sym_LT] = ACTIONS(521), - [anon_sym_GT] = ACTIONS(521), - [anon_sym_DOT] = ACTIONS(521), - [anon_sym_DQUOTE] = ACTIONS(519), - [anon_sym_SQUOTE] = ACTIONS(519), - [anon_sym_class] = ACTIONS(521), - [anon_sym_async] = ACTIONS(521), - [anon_sym_function] = ACTIONS(521), - [sym_optional_chain] = ACTIONS(519), - [anon_sym_new] = ACTIONS(521), - [anon_sym_AMP_AMP] = ACTIONS(519), - [anon_sym_PIPE_PIPE] = ACTIONS(519), - [anon_sym_GT_GT] = ACTIONS(521), - [anon_sym_GT_GT_GT] = ACTIONS(519), - [anon_sym_LT_LT] = ACTIONS(519), - [anon_sym_AMP] = ACTIONS(521), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(521), - [anon_sym_PLUS] = ACTIONS(521), - [anon_sym_DASH] = ACTIONS(521), - [anon_sym_SLASH] = ACTIONS(521), - [anon_sym_PERCENT] = ACTIONS(519), - [anon_sym_STAR_STAR] = ACTIONS(519), - [anon_sym_LT_EQ] = ACTIONS(519), - [anon_sym_EQ_EQ] = ACTIONS(521), - [anon_sym_EQ_EQ_EQ] = ACTIONS(519), - [anon_sym_BANG_EQ] = ACTIONS(521), - [anon_sym_BANG_EQ_EQ] = ACTIONS(519), - [anon_sym_GT_EQ] = ACTIONS(519), - [anon_sym_QMARK_QMARK] = ACTIONS(519), - [anon_sym_instanceof] = ACTIONS(521), - [anon_sym_BANG] = ACTIONS(521), - [anon_sym_TILDE] = ACTIONS(519), - [anon_sym_typeof] = ACTIONS(521), - [anon_sym_void] = ACTIONS(521), - [anon_sym_delete] = ACTIONS(521), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), + [STATE(58)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(444), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1306), + [sym_identifier] = ACTIONS(551), + [anon_sym_export] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(557), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(559), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(561), + [anon_sym_if] = ACTIONS(563), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(567), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(569), + [anon_sym_async] = ACTIONS(571), + [anon_sym_function] = ACTIONS(573), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(519), - [sym_number] = ACTIONS(519), - [sym_private_property_identifier] = ACTIONS(519), - [sym_this] = ACTIONS(521), - [sym_super] = ACTIONS(521), - [sym_true] = ACTIONS(521), - [sym_false] = ACTIONS(521), - [sym_null] = ACTIONS(521), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(519), - [anon_sym_static] = ACTIONS(521), - [anon_sym_get] = ACTIONS(521), - [anon_sym_set] = ACTIONS(521), - [sym__automatic_semicolon] = ACTIONS(519), - [sym__ternary_qmark] = ACTIONS(519), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(575), + [anon_sym_get] = ACTIONS(575), + [anon_sym_set] = ACTIONS(575), [sym_html_comment] = ACTIONS(5), }, - [66] = { - [ts_builtin_sym_end] = ACTIONS(523), - [sym_identifier] = ACTIONS(525), - [anon_sym_export] = ACTIONS(525), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_default] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(523), - [anon_sym_COMMA] = ACTIONS(523), - [anon_sym_RBRACE] = ACTIONS(523), - [anon_sym_import] = ACTIONS(525), - [anon_sym_with] = ACTIONS(525), - [anon_sym_var] = ACTIONS(525), - [anon_sym_let] = ACTIONS(525), - [anon_sym_const] = ACTIONS(525), - [anon_sym_else] = ACTIONS(525), - [anon_sym_if] = ACTIONS(525), - [anon_sym_switch] = ACTIONS(525), - [anon_sym_for] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(523), - [anon_sym_SEMI] = ACTIONS(523), - [anon_sym_await] = ACTIONS(525), - [anon_sym_in] = ACTIONS(525), - [anon_sym_of] = ACTIONS(525), - [anon_sym_while] = ACTIONS(525), - [anon_sym_do] = ACTIONS(525), - [anon_sym_try] = ACTIONS(525), - [anon_sym_break] = ACTIONS(525), - [anon_sym_continue] = ACTIONS(525), - [anon_sym_debugger] = ACTIONS(525), - [anon_sym_return] = ACTIONS(525), - [anon_sym_throw] = ACTIONS(525), - [anon_sym_case] = ACTIONS(525), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(523), - [anon_sym_LT] = ACTIONS(525), - [anon_sym_GT] = ACTIONS(525), - [anon_sym_DOT] = ACTIONS(525), - [anon_sym_DQUOTE] = ACTIONS(523), - [anon_sym_SQUOTE] = ACTIONS(523), - [anon_sym_class] = ACTIONS(525), - [anon_sym_async] = ACTIONS(525), - [anon_sym_function] = ACTIONS(525), - [sym_optional_chain] = ACTIONS(523), - [anon_sym_new] = ACTIONS(525), - [anon_sym_AMP_AMP] = ACTIONS(523), - [anon_sym_PIPE_PIPE] = ACTIONS(523), - [anon_sym_GT_GT] = ACTIONS(525), - [anon_sym_GT_GT_GT] = ACTIONS(523), - [anon_sym_LT_LT] = ACTIONS(523), - [anon_sym_AMP] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(525), - [anon_sym_PLUS] = ACTIONS(525), - [anon_sym_DASH] = ACTIONS(525), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(523), - [anon_sym_STAR_STAR] = ACTIONS(523), - [anon_sym_LT_EQ] = ACTIONS(523), - [anon_sym_EQ_EQ] = ACTIONS(525), - [anon_sym_EQ_EQ_EQ] = ACTIONS(523), - [anon_sym_BANG_EQ] = ACTIONS(525), - [anon_sym_BANG_EQ_EQ] = ACTIONS(523), - [anon_sym_GT_EQ] = ACTIONS(523), - [anon_sym_QMARK_QMARK] = ACTIONS(523), - [anon_sym_instanceof] = ACTIONS(525), - [anon_sym_BANG] = ACTIONS(525), - [anon_sym_TILDE] = ACTIONS(523), - [anon_sym_typeof] = ACTIONS(525), - [anon_sym_void] = ACTIONS(525), - [anon_sym_delete] = ACTIONS(525), - [anon_sym_PLUS_PLUS] = ACTIONS(523), - [anon_sym_DASH_DASH] = ACTIONS(523), + [STATE(59)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(424), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1306), + [sym_identifier] = ACTIONS(551), + [anon_sym_export] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(557), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(559), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(561), + [anon_sym_if] = ACTIONS(563), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(567), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(569), + [anon_sym_async] = ACTIONS(571), + [anon_sym_function] = ACTIONS(573), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(523), - [sym_number] = ACTIONS(523), - [sym_private_property_identifier] = ACTIONS(523), - [sym_this] = ACTIONS(525), - [sym_super] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_null] = ACTIONS(525), - [sym_undefined] = ACTIONS(525), - [anon_sym_AT] = ACTIONS(523), - [anon_sym_static] = ACTIONS(525), - [anon_sym_get] = ACTIONS(525), - [anon_sym_set] = ACTIONS(525), - [sym__automatic_semicolon] = ACTIONS(523), - [sym__ternary_qmark] = ACTIONS(523), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(575), + [anon_sym_get] = ACTIONS(575), + [anon_sym_set] = ACTIONS(575), [sym_html_comment] = ACTIONS(5), }, - [67] = { - [ts_builtin_sym_end] = ACTIONS(527), - [sym_identifier] = ACTIONS(529), - [anon_sym_export] = ACTIONS(529), - [anon_sym_STAR] = ACTIONS(529), - [anon_sym_default] = ACTIONS(529), - [anon_sym_LBRACE] = ACTIONS(527), - [anon_sym_COMMA] = ACTIONS(527), - [anon_sym_RBRACE] = ACTIONS(527), - [anon_sym_import] = ACTIONS(529), - [anon_sym_with] = ACTIONS(529), - [anon_sym_var] = ACTIONS(529), - [anon_sym_let] = ACTIONS(529), - [anon_sym_const] = ACTIONS(529), - [anon_sym_else] = ACTIONS(529), - [anon_sym_if] = ACTIONS(529), - [anon_sym_switch] = ACTIONS(529), - [anon_sym_for] = ACTIONS(529), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_SEMI] = ACTIONS(527), - [anon_sym_await] = ACTIONS(529), - [anon_sym_in] = ACTIONS(529), - [anon_sym_of] = ACTIONS(529), - [anon_sym_while] = ACTIONS(529), - [anon_sym_do] = ACTIONS(529), - [anon_sym_try] = ACTIONS(529), - [anon_sym_break] = ACTIONS(529), - [anon_sym_continue] = ACTIONS(529), - [anon_sym_debugger] = ACTIONS(529), - [anon_sym_return] = ACTIONS(529), - [anon_sym_throw] = ACTIONS(529), - [anon_sym_case] = ACTIONS(529), - [anon_sym_yield] = ACTIONS(529), - [anon_sym_LBRACK] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(529), - [anon_sym_GT] = ACTIONS(529), - [anon_sym_DOT] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(527), - [anon_sym_class] = ACTIONS(529), - [anon_sym_async] = ACTIONS(529), - [anon_sym_function] = ACTIONS(529), - [sym_optional_chain] = ACTIONS(527), - [anon_sym_new] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(527), - [anon_sym_PIPE_PIPE] = ACTIONS(527), - [anon_sym_GT_GT] = ACTIONS(529), - [anon_sym_GT_GT_GT] = ACTIONS(527), - [anon_sym_LT_LT] = ACTIONS(527), - [anon_sym_AMP] = ACTIONS(529), - [anon_sym_CARET] = ACTIONS(527), - [anon_sym_PIPE] = ACTIONS(529), - [anon_sym_PLUS] = ACTIONS(529), - [anon_sym_DASH] = ACTIONS(529), - [anon_sym_SLASH] = ACTIONS(529), - [anon_sym_PERCENT] = ACTIONS(527), - [anon_sym_STAR_STAR] = ACTIONS(527), - [anon_sym_LT_EQ] = ACTIONS(527), - [anon_sym_EQ_EQ] = ACTIONS(529), - [anon_sym_EQ_EQ_EQ] = ACTIONS(527), - [anon_sym_BANG_EQ] = ACTIONS(529), - [anon_sym_BANG_EQ_EQ] = ACTIONS(527), - [anon_sym_GT_EQ] = ACTIONS(527), - [anon_sym_QMARK_QMARK] = ACTIONS(527), - [anon_sym_instanceof] = ACTIONS(529), - [anon_sym_BANG] = ACTIONS(529), - [anon_sym_TILDE] = ACTIONS(527), - [anon_sym_typeof] = ACTIONS(529), - [anon_sym_void] = ACTIONS(529), - [anon_sym_delete] = ACTIONS(529), - [anon_sym_PLUS_PLUS] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(527), + [STATE(60)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(448), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1306), + [sym_identifier] = ACTIONS(551), + [anon_sym_export] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(557), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(559), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(561), + [anon_sym_if] = ACTIONS(563), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(567), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(569), + [anon_sym_async] = ACTIONS(571), + [anon_sym_function] = ACTIONS(573), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(527), - [sym_number] = ACTIONS(527), - [sym_private_property_identifier] = ACTIONS(527), - [sym_this] = ACTIONS(529), - [sym_super] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [sym_null] = ACTIONS(529), - [sym_undefined] = ACTIONS(529), - [anon_sym_AT] = ACTIONS(527), - [anon_sym_static] = ACTIONS(529), - [anon_sym_get] = ACTIONS(529), - [anon_sym_set] = ACTIONS(529), - [sym__automatic_semicolon] = ACTIONS(527), - [sym__ternary_qmark] = ACTIONS(527), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(575), + [anon_sym_get] = ACTIONS(575), + [anon_sym_set] = ACTIONS(575), [sym_html_comment] = ACTIONS(5), }, - [68] = { - [ts_builtin_sym_end] = ACTIONS(531), - [sym_identifier] = ACTIONS(533), - [anon_sym_export] = ACTIONS(533), - [anon_sym_STAR] = ACTIONS(535), - [anon_sym_default] = ACTIONS(533), - [anon_sym_LBRACE] = ACTIONS(531), - [anon_sym_COMMA] = ACTIONS(537), - [anon_sym_RBRACE] = ACTIONS(531), - [anon_sym_import] = ACTIONS(533), - [anon_sym_with] = ACTIONS(533), - [anon_sym_var] = ACTIONS(533), - [anon_sym_let] = ACTIONS(533), - [anon_sym_const] = ACTIONS(533), - [anon_sym_else] = ACTIONS(533), - [anon_sym_if] = ACTIONS(533), - [anon_sym_switch] = ACTIONS(533), - [anon_sym_for] = ACTIONS(533), - [anon_sym_LPAREN] = ACTIONS(531), - [anon_sym_SEMI] = ACTIONS(531), - [anon_sym_await] = ACTIONS(533), - [anon_sym_in] = ACTIONS(535), - [anon_sym_while] = ACTIONS(533), - [anon_sym_do] = ACTIONS(533), - [anon_sym_try] = ACTIONS(533), - [anon_sym_break] = ACTIONS(533), - [anon_sym_continue] = ACTIONS(533), - [anon_sym_debugger] = ACTIONS(533), - [anon_sym_return] = ACTIONS(533), - [anon_sym_throw] = ACTIONS(533), - [anon_sym_case] = ACTIONS(533), - [anon_sym_yield] = ACTIONS(533), - [anon_sym_LBRACK] = ACTIONS(531), - [anon_sym_LT] = ACTIONS(533), - [anon_sym_GT] = ACTIONS(535), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_DQUOTE] = ACTIONS(531), - [anon_sym_SQUOTE] = ACTIONS(531), - [anon_sym_class] = ACTIONS(533), - [anon_sym_async] = ACTIONS(533), - [anon_sym_function] = ACTIONS(533), - [sym_optional_chain] = ACTIONS(537), - [anon_sym_new] = ACTIONS(533), - [anon_sym_AMP_AMP] = ACTIONS(537), - [anon_sym_PIPE_PIPE] = ACTIONS(537), - [anon_sym_GT_GT] = ACTIONS(535), - [anon_sym_GT_GT_GT] = ACTIONS(537), - [anon_sym_LT_LT] = ACTIONS(537), - [anon_sym_AMP] = ACTIONS(535), - [anon_sym_CARET] = ACTIONS(537), - [anon_sym_PIPE] = ACTIONS(535), - [anon_sym_PLUS] = ACTIONS(533), - [anon_sym_DASH] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(533), - [anon_sym_PERCENT] = ACTIONS(537), - [anon_sym_STAR_STAR] = ACTIONS(537), - [anon_sym_LT_EQ] = ACTIONS(537), - [anon_sym_EQ_EQ] = ACTIONS(535), - [anon_sym_EQ_EQ_EQ] = ACTIONS(537), - [anon_sym_BANG_EQ] = ACTIONS(535), - [anon_sym_BANG_EQ_EQ] = ACTIONS(537), - [anon_sym_GT_EQ] = ACTIONS(537), - [anon_sym_QMARK_QMARK] = ACTIONS(537), - [anon_sym_instanceof] = ACTIONS(535), - [anon_sym_BANG] = ACTIONS(533), - [anon_sym_TILDE] = ACTIONS(531), - [anon_sym_typeof] = ACTIONS(533), - [anon_sym_void] = ACTIONS(533), - [anon_sym_delete] = ACTIONS(533), - [anon_sym_PLUS_PLUS] = ACTIONS(531), - [anon_sym_DASH_DASH] = ACTIONS(531), + [STATE(61)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(463), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1306), + [sym_identifier] = ACTIONS(551), + [anon_sym_export] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(557), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(559), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(561), + [anon_sym_if] = ACTIONS(563), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(567), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(569), + [anon_sym_async] = ACTIONS(571), + [anon_sym_function] = ACTIONS(573), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(531), - [sym_number] = ACTIONS(531), - [sym_private_property_identifier] = ACTIONS(531), - [sym_this] = ACTIONS(533), - [sym_super] = ACTIONS(533), - [sym_true] = ACTIONS(533), - [sym_false] = ACTIONS(533), - [sym_null] = ACTIONS(533), - [sym_undefined] = ACTIONS(533), - [anon_sym_AT] = ACTIONS(531), - [anon_sym_static] = ACTIONS(533), - [anon_sym_get] = ACTIONS(533), - [anon_sym_set] = ACTIONS(533), - [sym__automatic_semicolon] = ACTIONS(539), - [sym__ternary_qmark] = ACTIONS(537), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(575), + [anon_sym_get] = ACTIONS(575), + [anon_sym_set] = ACTIONS(575), [sym_html_comment] = ACTIONS(5), }, - [69] = { - [ts_builtin_sym_end] = ACTIONS(541), - [sym_identifier] = ACTIONS(543), - [anon_sym_export] = ACTIONS(543), - [anon_sym_STAR] = ACTIONS(545), - [anon_sym_default] = ACTIONS(543), - [anon_sym_LBRACE] = ACTIONS(541), - [anon_sym_COMMA] = ACTIONS(547), - [anon_sym_RBRACE] = ACTIONS(541), - [anon_sym_import] = ACTIONS(543), - [anon_sym_with] = ACTIONS(543), - [anon_sym_var] = ACTIONS(543), - [anon_sym_let] = ACTIONS(543), - [anon_sym_const] = ACTIONS(543), - [anon_sym_else] = ACTIONS(543), - [anon_sym_if] = ACTIONS(543), - [anon_sym_switch] = ACTIONS(543), - [anon_sym_for] = ACTIONS(543), - [anon_sym_LPAREN] = ACTIONS(541), - [anon_sym_SEMI] = ACTIONS(541), - [anon_sym_await] = ACTIONS(543), - [anon_sym_in] = ACTIONS(545), - [anon_sym_while] = ACTIONS(543), - [anon_sym_do] = ACTIONS(543), - [anon_sym_try] = ACTIONS(543), - [anon_sym_break] = ACTIONS(543), - [anon_sym_continue] = ACTIONS(543), - [anon_sym_debugger] = ACTIONS(543), - [anon_sym_return] = ACTIONS(543), - [anon_sym_throw] = ACTIONS(543), - [anon_sym_case] = ACTIONS(543), - [anon_sym_yield] = ACTIONS(543), - [anon_sym_LBRACK] = ACTIONS(541), - [anon_sym_LT] = ACTIONS(543), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_DOT] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(541), - [anon_sym_SQUOTE] = ACTIONS(541), - [anon_sym_class] = ACTIONS(543), - [anon_sym_async] = ACTIONS(543), - [anon_sym_function] = ACTIONS(543), - [sym_optional_chain] = ACTIONS(547), - [anon_sym_new] = ACTIONS(543), - [anon_sym_AMP_AMP] = ACTIONS(547), - [anon_sym_PIPE_PIPE] = ACTIONS(547), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_GT_GT_GT] = ACTIONS(547), - [anon_sym_LT_LT] = ACTIONS(547), - [anon_sym_AMP] = ACTIONS(545), - [anon_sym_CARET] = ACTIONS(547), - [anon_sym_PIPE] = ACTIONS(545), - [anon_sym_PLUS] = ACTIONS(543), - [anon_sym_DASH] = ACTIONS(543), - [anon_sym_SLASH] = ACTIONS(543), - [anon_sym_PERCENT] = ACTIONS(547), - [anon_sym_STAR_STAR] = ACTIONS(547), - [anon_sym_LT_EQ] = ACTIONS(547), - [anon_sym_EQ_EQ] = ACTIONS(545), - [anon_sym_EQ_EQ_EQ] = ACTIONS(547), - [anon_sym_BANG_EQ] = ACTIONS(545), - [anon_sym_BANG_EQ_EQ] = ACTIONS(547), - [anon_sym_GT_EQ] = ACTIONS(547), - [anon_sym_QMARK_QMARK] = ACTIONS(547), - [anon_sym_instanceof] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(543), - [anon_sym_TILDE] = ACTIONS(541), - [anon_sym_typeof] = ACTIONS(543), - [anon_sym_void] = ACTIONS(543), - [anon_sym_delete] = ACTIONS(543), - [anon_sym_PLUS_PLUS] = ACTIONS(541), - [anon_sym_DASH_DASH] = ACTIONS(541), + [STATE(62)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(464), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1306), + [sym_identifier] = ACTIONS(551), + [anon_sym_export] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(557), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(559), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(561), + [anon_sym_if] = ACTIONS(563), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(567), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(569), + [anon_sym_async] = ACTIONS(571), + [anon_sym_function] = ACTIONS(573), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(541), - [sym_number] = ACTIONS(541), - [sym_private_property_identifier] = ACTIONS(541), - [sym_this] = ACTIONS(543), - [sym_super] = ACTIONS(543), - [sym_true] = ACTIONS(543), - [sym_false] = ACTIONS(543), - [sym_null] = ACTIONS(543), - [sym_undefined] = ACTIONS(543), - [anon_sym_AT] = ACTIONS(541), - [anon_sym_static] = ACTIONS(543), - [anon_sym_get] = ACTIONS(543), - [anon_sym_set] = ACTIONS(543), - [sym__automatic_semicolon] = ACTIONS(549), - [sym__ternary_qmark] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(575), + [anon_sym_get] = ACTIONS(575), + [anon_sym_set] = ACTIONS(575), [sym_html_comment] = ACTIONS(5), }, - [70] = { - [ts_builtin_sym_end] = ACTIONS(551), - [sym_identifier] = ACTIONS(553), + [STATE(63)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(466), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1306), + [sym_identifier] = ACTIONS(551), [anon_sym_export] = ACTIONS(553), - [anon_sym_STAR] = ACTIONS(555), - [anon_sym_default] = ACTIONS(553), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_RBRACE] = ACTIONS(551), - [anon_sym_import] = ACTIONS(553), - [anon_sym_with] = ACTIONS(553), - [anon_sym_var] = ACTIONS(553), - [anon_sym_let] = ACTIONS(553), - [anon_sym_const] = ACTIONS(553), - [anon_sym_else] = ACTIONS(553), - [anon_sym_if] = ACTIONS(553), - [anon_sym_switch] = ACTIONS(553), - [anon_sym_for] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(551), - [anon_sym_SEMI] = ACTIONS(551), - [anon_sym_await] = ACTIONS(553), - [anon_sym_in] = ACTIONS(555), - [anon_sym_while] = ACTIONS(553), - [anon_sym_do] = ACTIONS(553), - [anon_sym_try] = ACTIONS(553), - [anon_sym_break] = ACTIONS(553), - [anon_sym_continue] = ACTIONS(553), - [anon_sym_debugger] = ACTIONS(553), - [anon_sym_return] = ACTIONS(553), - [anon_sym_throw] = ACTIONS(553), - [anon_sym_case] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(553), - [anon_sym_LBRACK] = ACTIONS(551), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_DQUOTE] = ACTIONS(551), - [anon_sym_SQUOTE] = ACTIONS(551), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(553), - [anon_sym_function] = ACTIONS(553), - [sym_optional_chain] = ACTIONS(557), - [anon_sym_new] = ACTIONS(553), - [anon_sym_AMP_AMP] = ACTIONS(557), - [anon_sym_PIPE_PIPE] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_GT_GT_GT] = ACTIONS(557), - [anon_sym_LT_LT] = ACTIONS(557), - [anon_sym_AMP] = ACTIONS(555), - [anon_sym_CARET] = ACTIONS(557), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_SLASH] = ACTIONS(553), - [anon_sym_PERCENT] = ACTIONS(557), - [anon_sym_STAR_STAR] = ACTIONS(557), - [anon_sym_LT_EQ] = ACTIONS(557), - [anon_sym_EQ_EQ] = ACTIONS(555), - [anon_sym_EQ_EQ_EQ] = ACTIONS(557), - [anon_sym_BANG_EQ] = ACTIONS(555), - [anon_sym_BANG_EQ_EQ] = ACTIONS(557), - [anon_sym_GT_EQ] = ACTIONS(557), - [anon_sym_QMARK_QMARK] = ACTIONS(557), - [anon_sym_instanceof] = ACTIONS(555), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_TILDE] = ACTIONS(551), - [anon_sym_typeof] = ACTIONS(553), - [anon_sym_void] = ACTIONS(553), - [anon_sym_delete] = ACTIONS(553), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(557), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(559), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(561), + [anon_sym_if] = ACTIONS(563), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(567), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(569), + [anon_sym_async] = ACTIONS(571), + [anon_sym_function] = ACTIONS(573), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(551), - [sym_number] = ACTIONS(551), - [sym_private_property_identifier] = ACTIONS(551), - [sym_this] = ACTIONS(553), - [sym_super] = ACTIONS(553), - [sym_true] = ACTIONS(553), - [sym_false] = ACTIONS(553), - [sym_null] = ACTIONS(553), - [sym_undefined] = ACTIONS(553), - [anon_sym_AT] = ACTIONS(551), - [anon_sym_static] = ACTIONS(553), - [anon_sym_get] = ACTIONS(553), - [anon_sym_set] = ACTIONS(553), - [sym__automatic_semicolon] = ACTIONS(559), - [sym__ternary_qmark] = ACTIONS(557), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(575), + [anon_sym_get] = ACTIONS(575), + [anon_sym_set] = ACTIONS(575), [sym_html_comment] = ACTIONS(5), }, - [71] = { - [ts_builtin_sym_end] = ACTIONS(561), - [sym_identifier] = ACTIONS(563), - [anon_sym_export] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(565), - [anon_sym_default] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(561), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_RBRACE] = ACTIONS(561), - [anon_sym_import] = ACTIONS(563), - [anon_sym_with] = ACTIONS(563), - [anon_sym_var] = ACTIONS(563), - [anon_sym_let] = ACTIONS(563), - [anon_sym_const] = ACTIONS(563), - [anon_sym_else] = ACTIONS(563), + [STATE(64)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(479), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1306), + [sym_identifier] = ACTIONS(551), + [anon_sym_export] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(557), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(559), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(561), [anon_sym_if] = ACTIONS(563), - [anon_sym_switch] = ACTIONS(563), - [anon_sym_for] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(561), - [anon_sym_SEMI] = ACTIONS(561), - [anon_sym_await] = ACTIONS(563), - [anon_sym_in] = ACTIONS(565), - [anon_sym_while] = ACTIONS(563), - [anon_sym_do] = ACTIONS(563), - [anon_sym_try] = ACTIONS(563), - [anon_sym_break] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(563), - [anon_sym_debugger] = ACTIONS(563), - [anon_sym_return] = ACTIONS(563), - [anon_sym_throw] = ACTIONS(563), - [anon_sym_case] = ACTIONS(563), - [anon_sym_yield] = ACTIONS(563), - [anon_sym_LBRACK] = ACTIONS(561), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(565), - [anon_sym_DOT] = ACTIONS(565), - [anon_sym_DQUOTE] = ACTIONS(561), - [anon_sym_SQUOTE] = ACTIONS(561), - [anon_sym_class] = ACTIONS(563), - [anon_sym_async] = ACTIONS(563), - [anon_sym_function] = ACTIONS(563), - [sym_optional_chain] = ACTIONS(567), - [anon_sym_new] = ACTIONS(563), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_GT_GT] = ACTIONS(565), - [anon_sym_GT_GT_GT] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(567), - [anon_sym_AMP] = ACTIONS(565), - [anon_sym_CARET] = ACTIONS(567), - [anon_sym_PIPE] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_SLASH] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(567), - [anon_sym_STAR_STAR] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_EQ_EQ] = ACTIONS(565), - [anon_sym_EQ_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(565), - [anon_sym_BANG_EQ_EQ] = ACTIONS(567), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_QMARK_QMARK] = ACTIONS(567), - [anon_sym_instanceof] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(563), - [anon_sym_TILDE] = ACTIONS(561), - [anon_sym_typeof] = ACTIONS(563), - [anon_sym_void] = ACTIONS(563), - [anon_sym_delete] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(561), - [anon_sym_DASH_DASH] = ACTIONS(561), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(567), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(569), + [anon_sym_async] = ACTIONS(571), + [anon_sym_function] = ACTIONS(573), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(561), - [sym_number] = ACTIONS(561), - [sym_private_property_identifier] = ACTIONS(561), - [sym_this] = ACTIONS(563), - [sym_super] = ACTIONS(563), - [sym_true] = ACTIONS(563), - [sym_false] = ACTIONS(563), - [sym_null] = ACTIONS(563), - [sym_undefined] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(561), - [anon_sym_static] = ACTIONS(563), - [anon_sym_get] = ACTIONS(563), - [anon_sym_set] = ACTIONS(563), - [sym__automatic_semicolon] = ACTIONS(569), - [sym__ternary_qmark] = ACTIONS(567), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(575), + [anon_sym_get] = ACTIONS(575), + [anon_sym_set] = ACTIONS(575), [sym_html_comment] = ACTIONS(5), }, - [72] = { - [ts_builtin_sym_end] = ACTIONS(571), - [sym_identifier] = ACTIONS(573), - [anon_sym_export] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(575), - [anon_sym_default] = ACTIONS(573), - [anon_sym_LBRACE] = ACTIONS(571), - [anon_sym_COMMA] = ACTIONS(577), - [anon_sym_RBRACE] = ACTIONS(571), - [anon_sym_import] = ACTIONS(573), - [anon_sym_with] = ACTIONS(573), - [anon_sym_var] = ACTIONS(573), - [anon_sym_let] = ACTIONS(573), - [anon_sym_const] = ACTIONS(573), - [anon_sym_else] = ACTIONS(573), - [anon_sym_if] = ACTIONS(573), - [anon_sym_switch] = ACTIONS(573), - [anon_sym_for] = ACTIONS(573), - [anon_sym_LPAREN] = ACTIONS(571), - [anon_sym_SEMI] = ACTIONS(571), - [anon_sym_await] = ACTIONS(573), - [anon_sym_in] = ACTIONS(575), - [anon_sym_while] = ACTIONS(573), - [anon_sym_do] = ACTIONS(573), - [anon_sym_try] = ACTIONS(573), - [anon_sym_break] = ACTIONS(573), - [anon_sym_continue] = ACTIONS(573), - [anon_sym_debugger] = ACTIONS(573), - [anon_sym_return] = ACTIONS(573), - [anon_sym_throw] = ACTIONS(573), - [anon_sym_case] = ACTIONS(573), - [anon_sym_yield] = ACTIONS(573), - [anon_sym_LBRACK] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT] = ACTIONS(575), - [anon_sym_DOT] = ACTIONS(575), - [anon_sym_DQUOTE] = ACTIONS(571), - [anon_sym_SQUOTE] = ACTIONS(571), - [anon_sym_class] = ACTIONS(573), - [anon_sym_async] = ACTIONS(573), + [STATE(65)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(480), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1306), + [sym_identifier] = ACTIONS(551), + [anon_sym_export] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(557), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(559), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(561), + [anon_sym_if] = ACTIONS(563), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(567), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(569), + [anon_sym_async] = ACTIONS(571), [anon_sym_function] = ACTIONS(573), - [sym_optional_chain] = ACTIONS(577), - [anon_sym_new] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(577), - [anon_sym_PIPE_PIPE] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(575), - [anon_sym_GT_GT_GT] = ACTIONS(577), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(575), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_SLASH] = ACTIONS(573), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_STAR_STAR] = ACTIONS(577), - [anon_sym_LT_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(575), - [anon_sym_EQ_EQ_EQ] = ACTIONS(577), - [anon_sym_BANG_EQ] = ACTIONS(575), - [anon_sym_BANG_EQ_EQ] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(577), - [anon_sym_QMARK_QMARK] = ACTIONS(577), - [anon_sym_instanceof] = ACTIONS(575), - [anon_sym_BANG] = ACTIONS(573), - [anon_sym_TILDE] = ACTIONS(571), - [anon_sym_typeof] = ACTIONS(573), - [anon_sym_void] = ACTIONS(573), - [anon_sym_delete] = ACTIONS(573), - [anon_sym_PLUS_PLUS] = ACTIONS(571), - [anon_sym_DASH_DASH] = ACTIONS(571), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(571), - [sym_number] = ACTIONS(571), - [sym_private_property_identifier] = ACTIONS(571), - [sym_this] = ACTIONS(573), - [sym_super] = ACTIONS(573), - [sym_true] = ACTIONS(573), - [sym_false] = ACTIONS(573), - [sym_null] = ACTIONS(573), - [sym_undefined] = ACTIONS(573), - [anon_sym_AT] = ACTIONS(571), - [anon_sym_static] = ACTIONS(573), - [anon_sym_get] = ACTIONS(573), - [anon_sym_set] = ACTIONS(573), - [sym__automatic_semicolon] = ACTIONS(579), - [sym__ternary_qmark] = ACTIONS(577), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(575), + [anon_sym_get] = ACTIONS(575), + [anon_sym_set] = ACTIONS(575), [sym_html_comment] = ACTIONS(5), }, - [73] = { - [ts_builtin_sym_end] = ACTIONS(581), - [sym_identifier] = ACTIONS(583), - [anon_sym_export] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(585), - [anon_sym_default] = ACTIONS(583), - [anon_sym_LBRACE] = ACTIONS(581), - [anon_sym_COMMA] = ACTIONS(587), - [anon_sym_RBRACE] = ACTIONS(581), - [anon_sym_import] = ACTIONS(583), - [anon_sym_with] = ACTIONS(583), - [anon_sym_var] = ACTIONS(583), - [anon_sym_let] = ACTIONS(583), - [anon_sym_const] = ACTIONS(583), - [anon_sym_else] = ACTIONS(583), - [anon_sym_if] = ACTIONS(583), - [anon_sym_switch] = ACTIONS(583), - [anon_sym_for] = ACTIONS(583), - [anon_sym_LPAREN] = ACTIONS(581), - [anon_sym_SEMI] = ACTIONS(581), - [anon_sym_await] = ACTIONS(583), - [anon_sym_in] = ACTIONS(585), - [anon_sym_while] = ACTIONS(583), - [anon_sym_do] = ACTIONS(583), - [anon_sym_try] = ACTIONS(583), - [anon_sym_break] = ACTIONS(583), - [anon_sym_continue] = ACTIONS(583), - [anon_sym_debugger] = ACTIONS(583), - [anon_sym_return] = ACTIONS(583), - [anon_sym_throw] = ACTIONS(583), - [anon_sym_case] = ACTIONS(583), - [anon_sym_yield] = ACTIONS(583), - [anon_sym_LBRACK] = ACTIONS(581), - [anon_sym_LT] = ACTIONS(583), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_DQUOTE] = ACTIONS(581), - [anon_sym_SQUOTE] = ACTIONS(581), - [anon_sym_class] = ACTIONS(583), - [anon_sym_async] = ACTIONS(583), - [anon_sym_function] = ACTIONS(583), - [sym_optional_chain] = ACTIONS(587), - [anon_sym_new] = ACTIONS(583), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(587), - [anon_sym_LT_LT] = ACTIONS(587), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(583), - [anon_sym_DASH] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(583), - [anon_sym_PERCENT] = ACTIONS(587), - [anon_sym_STAR_STAR] = ACTIONS(587), - [anon_sym_LT_EQ] = ACTIONS(587), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_EQ_EQ_EQ] = ACTIONS(587), - [anon_sym_BANG_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ_EQ] = ACTIONS(587), - [anon_sym_GT_EQ] = ACTIONS(587), - [anon_sym_QMARK_QMARK] = ACTIONS(587), - [anon_sym_instanceof] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(583), - [anon_sym_TILDE] = ACTIONS(581), - [anon_sym_typeof] = ACTIONS(583), - [anon_sym_void] = ACTIONS(583), - [anon_sym_delete] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(581), - [anon_sym_DASH_DASH] = ACTIONS(581), + [STATE(66)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(481), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1306), + [sym_identifier] = ACTIONS(551), + [anon_sym_export] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(557), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(559), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(561), + [anon_sym_if] = ACTIONS(563), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(567), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(569), + [anon_sym_async] = ACTIONS(571), + [anon_sym_function] = ACTIONS(573), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(581), - [sym_number] = ACTIONS(581), - [sym_private_property_identifier] = ACTIONS(581), - [sym_this] = ACTIONS(583), - [sym_super] = ACTIONS(583), - [sym_true] = ACTIONS(583), - [sym_false] = ACTIONS(583), - [sym_null] = ACTIONS(583), - [sym_undefined] = ACTIONS(583), - [anon_sym_AT] = ACTIONS(581), - [anon_sym_static] = ACTIONS(583), - [anon_sym_get] = ACTIONS(583), - [anon_sym_set] = ACTIONS(583), - [sym__automatic_semicolon] = ACTIONS(589), - [sym__ternary_qmark] = ACTIONS(587), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(575), + [anon_sym_get] = ACTIONS(575), + [anon_sym_set] = ACTIONS(575), [sym_html_comment] = ACTIONS(5), }, - [74] = { - [ts_builtin_sym_end] = ACTIONS(591), - [sym_identifier] = ACTIONS(593), - [anon_sym_export] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(595), - [anon_sym_default] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(591), - [anon_sym_COMMA] = ACTIONS(597), - [anon_sym_RBRACE] = ACTIONS(591), - [anon_sym_import] = ACTIONS(593), - [anon_sym_with] = ACTIONS(593), - [anon_sym_var] = ACTIONS(593), - [anon_sym_let] = ACTIONS(593), - [anon_sym_const] = ACTIONS(593), - [anon_sym_else] = ACTIONS(593), - [anon_sym_if] = ACTIONS(593), - [anon_sym_switch] = ACTIONS(593), - [anon_sym_for] = ACTIONS(593), - [anon_sym_LPAREN] = ACTIONS(591), - [anon_sym_SEMI] = ACTIONS(591), - [anon_sym_await] = ACTIONS(593), - [anon_sym_in] = ACTIONS(595), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(593), - [anon_sym_try] = ACTIONS(593), - [anon_sym_break] = ACTIONS(593), - [anon_sym_continue] = ACTIONS(593), - [anon_sym_debugger] = ACTIONS(593), - [anon_sym_return] = ACTIONS(593), - [anon_sym_throw] = ACTIONS(593), - [anon_sym_case] = ACTIONS(593), - [anon_sym_yield] = ACTIONS(593), - [anon_sym_LBRACK] = ACTIONS(591), - [anon_sym_LT] = ACTIONS(593), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_DQUOTE] = ACTIONS(591), - [anon_sym_SQUOTE] = ACTIONS(591), - [anon_sym_class] = ACTIONS(593), - [anon_sym_async] = ACTIONS(593), - [anon_sym_function] = ACTIONS(593), - [sym_optional_chain] = ACTIONS(597), - [anon_sym_new] = ACTIONS(593), - [anon_sym_AMP_AMP] = ACTIONS(597), - [anon_sym_PIPE_PIPE] = ACTIONS(597), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_GT_GT_GT] = ACTIONS(597), - [anon_sym_LT_LT] = ACTIONS(597), - [anon_sym_AMP] = ACTIONS(595), - [anon_sym_CARET] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_SLASH] = ACTIONS(593), - [anon_sym_PERCENT] = ACTIONS(597), - [anon_sym_STAR_STAR] = ACTIONS(597), - [anon_sym_LT_EQ] = ACTIONS(597), - [anon_sym_EQ_EQ] = ACTIONS(595), - [anon_sym_EQ_EQ_EQ] = ACTIONS(597), - [anon_sym_BANG_EQ] = ACTIONS(595), - [anon_sym_BANG_EQ_EQ] = ACTIONS(597), - [anon_sym_GT_EQ] = ACTIONS(597), - [anon_sym_QMARK_QMARK] = ACTIONS(597), - [anon_sym_instanceof] = ACTIONS(595), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_TILDE] = ACTIONS(591), - [anon_sym_typeof] = ACTIONS(593), - [anon_sym_void] = ACTIONS(593), - [anon_sym_delete] = ACTIONS(593), - [anon_sym_PLUS_PLUS] = ACTIONS(591), - [anon_sym_DASH_DASH] = ACTIONS(591), + [STATE(67)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(483), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1306), + [sym_identifier] = ACTIONS(551), + [anon_sym_export] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(557), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(559), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(561), + [anon_sym_if] = ACTIONS(563), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(565), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(567), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(569), + [anon_sym_async] = ACTIONS(571), + [anon_sym_function] = ACTIONS(573), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(591), - [sym_number] = ACTIONS(591), - [sym_private_property_identifier] = ACTIONS(591), - [sym_this] = ACTIONS(593), - [sym_super] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [sym_null] = ACTIONS(593), - [sym_undefined] = ACTIONS(593), - [anon_sym_AT] = ACTIONS(591), - [anon_sym_static] = ACTIONS(593), - [anon_sym_get] = ACTIONS(593), - [anon_sym_set] = ACTIONS(593), - [sym__automatic_semicolon] = ACTIONS(599), - [sym__ternary_qmark] = ACTIONS(597), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(575), + [anon_sym_get] = ACTIONS(575), + [anon_sym_set] = ACTIONS(575), [sym_html_comment] = ACTIONS(5), }, - [75] = { - [ts_builtin_sym_end] = ACTIONS(601), - [sym_identifier] = ACTIONS(603), - [anon_sym_export] = ACTIONS(603), - [anon_sym_STAR] = ACTIONS(605), - [anon_sym_default] = ACTIONS(603), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_COMMA] = ACTIONS(607), - [anon_sym_RBRACE] = ACTIONS(601), - [anon_sym_import] = ACTIONS(603), - [anon_sym_with] = ACTIONS(603), - [anon_sym_var] = ACTIONS(603), - [anon_sym_let] = ACTIONS(603), - [anon_sym_const] = ACTIONS(603), - [anon_sym_else] = ACTIONS(603), - [anon_sym_if] = ACTIONS(603), - [anon_sym_switch] = ACTIONS(603), - [anon_sym_for] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(601), - [anon_sym_SEMI] = ACTIONS(601), - [anon_sym_await] = ACTIONS(603), - [anon_sym_in] = ACTIONS(605), - [anon_sym_while] = ACTIONS(603), - [anon_sym_do] = ACTIONS(603), - [anon_sym_try] = ACTIONS(603), - [anon_sym_break] = ACTIONS(603), - [anon_sym_continue] = ACTIONS(603), - [anon_sym_debugger] = ACTIONS(603), - [anon_sym_return] = ACTIONS(603), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_case] = ACTIONS(603), - [anon_sym_yield] = ACTIONS(603), - [anon_sym_LBRACK] = ACTIONS(601), - [anon_sym_LT] = ACTIONS(603), - [anon_sym_GT] = ACTIONS(605), - [anon_sym_DOT] = ACTIONS(605), - [anon_sym_DQUOTE] = ACTIONS(601), - [anon_sym_SQUOTE] = ACTIONS(601), - [anon_sym_class] = ACTIONS(603), - [anon_sym_async] = ACTIONS(603), - [anon_sym_function] = ACTIONS(603), - [sym_optional_chain] = ACTIONS(607), - [anon_sym_new] = ACTIONS(603), - [anon_sym_AMP_AMP] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [anon_sym_GT_GT] = ACTIONS(605), - [anon_sym_GT_GT_GT] = ACTIONS(607), - [anon_sym_LT_LT] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(605), - [anon_sym_CARET] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(605), - [anon_sym_PLUS] = ACTIONS(603), - [anon_sym_DASH] = ACTIONS(603), - [anon_sym_SLASH] = ACTIONS(603), - [anon_sym_PERCENT] = ACTIONS(607), - [anon_sym_STAR_STAR] = ACTIONS(607), - [anon_sym_LT_EQ] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(605), - [anon_sym_EQ_EQ_EQ] = ACTIONS(607), - [anon_sym_BANG_EQ] = ACTIONS(605), - [anon_sym_BANG_EQ_EQ] = ACTIONS(607), - [anon_sym_GT_EQ] = ACTIONS(607), - [anon_sym_QMARK_QMARK] = ACTIONS(607), - [anon_sym_instanceof] = ACTIONS(605), - [anon_sym_BANG] = ACTIONS(603), - [anon_sym_TILDE] = ACTIONS(601), - [anon_sym_typeof] = ACTIONS(603), - [anon_sym_void] = ACTIONS(603), - [anon_sym_delete] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), + [STATE(68)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(452), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1267), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(601), - [sym_number] = ACTIONS(601), - [sym_private_property_identifier] = ACTIONS(601), - [sym_this] = ACTIONS(603), - [sym_super] = ACTIONS(603), - [sym_true] = ACTIONS(603), - [sym_false] = ACTIONS(603), - [sym_null] = ACTIONS(603), - [sym_undefined] = ACTIONS(603), - [anon_sym_AT] = ACTIONS(601), - [anon_sym_static] = ACTIONS(603), - [anon_sym_get] = ACTIONS(603), - [anon_sym_set] = ACTIONS(603), - [sym__automatic_semicolon] = ACTIONS(609), - [sym__ternary_qmark] = ACTIONS(607), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [76] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(767), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1369), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_spread_element] = STATE(1344), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1207), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1345), - [aux_sym_array_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_RBRACK] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(69)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(429), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1267), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [77] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(750), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1369), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_spread_element] = STATE(1326), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1207), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1328), - [aux_sym_array_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_RBRACK] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(70)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(432), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1267), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [78] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(767), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1369), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_spread_element] = STATE(1344), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1207), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1345), - [aux_sym_array_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_RBRACK] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(71)] = { + [sym_export_statement] = STATE(471), + [sym_declaration] = STATE(471), + [sym_import] = STATE(1326), + [sym_import_statement] = STATE(471), + [sym_statement] = STATE(473), + [sym_expression_statement] = STATE(471), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_statement_block] = STATE(471), + [sym_if_statement] = STATE(471), + [sym_switch_statement] = STATE(471), + [sym_for_statement] = STATE(471), + [sym_for_in_statement] = STATE(471), + [sym_while_statement] = STATE(471), + [sym_do_statement] = STATE(471), + [sym_try_statement] = STATE(471), + [sym_with_statement] = STATE(471), + [sym_break_statement] = STATE(471), + [sym_continue_statement] = STATE(471), + [sym_debugger_statement] = STATE(471), + [sym_return_statement] = STATE(471), + [sym_throw_statement] = STATE(471), + [sym_empty_statement] = STATE(471), + [sym_labeled_statement] = STATE(471), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(823), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1662), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1267), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_debugger] = ACTIONS(51), + [anon_sym_return] = ACTIONS(53), + [anon_sym_throw] = ACTIONS(55), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), [sym_html_comment] = ACTIONS(5), }, - [79] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(812), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1369), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_spread_element] = STATE(1326), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1207), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1328), - [aux_sym_array_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_RBRACK] = ACTIONS(625), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(72)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(692), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_using] = ACTIONS(175), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(485), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(188), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_EQ_GT] = ACTIONS(200), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(204), + [anon_sym_DASH] = ACTIONS(204), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(210), + [anon_sym_DASH_DASH] = ACTIONS(210), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [anon_sym_BQUOTE] = ACTIONS(213), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, - [80] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(767), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1369), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_spread_element] = STATE(1344), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1207), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1345), - [aux_sym_array_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_RBRACK] = ACTIONS(629), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(73)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(587), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_using] = ACTIONS(502), + [anon_sym_await] = ACTIONS(436), + [anon_sym_of] = ACTIONS(504), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_in] = ACTIONS(506), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_EQ_GT] = ACTIONS(498), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(456), + [anon_sym_DASH_DASH] = ACTIONS(456), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [anon_sym_BQUOTE] = ACTIONS(419), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, - [81] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(767), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1369), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_spread_element] = STATE(1344), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1207), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1345), - [aux_sym_array_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_RBRACK] = ACTIONS(631), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(74)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(587), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_in] = ACTIONS(165), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_EQ] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(386), + [anon_sym_RBRACK] = ACTIONS(514), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_EQ_GT] = ACTIONS(402), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(416), + [anon_sym_DASH_DASH] = ACTIONS(416), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [anon_sym_BQUOTE] = ACTIONS(419), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, - [82] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(767), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1369), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_spread_element] = STATE(1344), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1207), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1345), - [aux_sym_array_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_RBRACK] = ACTIONS(633), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(75)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(587), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_of] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_in] = ACTIONS(165), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_EQ_GT] = ACTIONS(580), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(456), + [anon_sym_DASH_DASH] = ACTIONS(456), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [anon_sym_BQUOTE] = ACTIONS(419), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, - [83] = { - [sym_declaration] = STATE(391), - [sym_import] = STATE(1232), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(831), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1237), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(635), - [anon_sym_const] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(637), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(76)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(587), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_in] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(169), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_EQ_GT] = ACTIONS(498), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(456), + [anon_sym_DASH_DASH] = ACTIONS(456), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(419), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, - [84] = { - [sym_declaration] = STATE(401), - [sym_import] = STATE(1232), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(825), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1273), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(635), - [anon_sym_const] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(639), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(77)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(587), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1857), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1857), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1141), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1857), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1779), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(582), + [anon_sym_export] = ACTIONS(584), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_of] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_in] = ACTIONS(165), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_EQ] = ACTIONS(590), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(400), + [anon_sym_EQ_GT] = ACTIONS(580), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(596), + [anon_sym_DASH] = ACTIONS(596), + [anon_sym_SLASH] = ACTIONS(599), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_typeof] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(606), + [anon_sym_DASH_DASH] = ACTIONS(606), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(419), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(609), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(584), + [anon_sym_get] = ACTIONS(584), + [anon_sym_set] = ACTIONS(584), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, - [85] = { - [sym_declaration] = STATE(401), - [sym_import] = STATE(1232), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(825), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1237), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(635), - [anon_sym_const] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(65), - [anon_sym_async] = ACTIONS(637), - [anon_sym_function] = ACTIONS(69), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(78)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(587), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1776), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1776), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1776), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1778), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(615), + [anon_sym_await] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_in] = ACTIONS(165), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_EQ] = ACTIONS(624), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(626), + [anon_sym_function] = ACTIONS(400), + [anon_sym_EQ_GT] = ACTIONS(628), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_new] = ACTIONS(630), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(632), + [anon_sym_DASH] = ACTIONS(632), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_typeof] = ACTIONS(635), + [anon_sym_void] = ACTIONS(635), + [anon_sym_delete] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(639), + [anon_sym_DASH_DASH] = ACTIONS(639), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(419), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(642), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, - [86] = { - [sym_declaration] = STATE(391), - [sym_import] = STATE(1232), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(831), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_class_declaration] = STATE(412), - [sym_function_expression] = STATE(677), - [sym_function_declaration] = STATE(412), - [sym_generator_function] = STATE(677), - [sym_generator_function_declaration] = STATE(412), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1273), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_var] = ACTIONS(21), - [anon_sym_let] = ACTIONS(635), - [anon_sym_const] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(339), - [anon_sym_async] = ACTIONS(639), - [anon_sym_function] = ACTIONS(343), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(79)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(587), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_in] = ACTIONS(165), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_EQ_GT] = ACTIONS(628), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(449), + [anon_sym_DASH] = ACTIONS(449), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(456), + [anon_sym_DASH_DASH] = ACTIONS(456), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(419), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, - [87] = { - [sym_import] = STATE(1272), - [sym_variable_declaration] = STATE(110), - [sym_lexical_declaration] = STATE(110), - [sym_empty_statement] = STATE(110), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(766), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1342), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1342), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1342), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1717), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(641), - [anon_sym_export] = ACTIONS(643), - [anon_sym_LBRACE] = ACTIONS(645), - [anon_sym_import] = ACTIONS(357), - [anon_sym_var] = ACTIONS(647), - [anon_sym_let] = ACTIONS(649), - [anon_sym_const] = ACTIONS(651), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(655), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(80)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(663), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_COMMA] = ACTIONS(648), + [anon_sym_RBRACE] = ACTIONS(648), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(648), + [anon_sym_RPAREN] = ACTIONS(648), + [anon_sym_in] = ACTIONS(652), + [anon_sym_COLON] = ACTIONS(648), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_RBRACK] = ACTIONS(648), + [anon_sym_LT] = ACTIONS(656), + [anon_sym_GT] = ACTIONS(652), + [anon_sym_DOT] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [sym_optional_chain] = ACTIONS(648), + [anon_sym_new] = ACTIONS(404), + [anon_sym_AMP_AMP] = ACTIONS(648), + [anon_sym_PIPE_PIPE] = ACTIONS(648), + [anon_sym_GT_GT] = ACTIONS(652), + [anon_sym_GT_GT_GT] = ACTIONS(648), + [anon_sym_LT_LT] = ACTIONS(648), + [anon_sym_AMP] = ACTIONS(652), + [anon_sym_CARET] = ACTIONS(648), + [anon_sym_PIPE] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_STAR_STAR] = ACTIONS(648), + [anon_sym_LT_EQ] = ACTIONS(648), + [anon_sym_EQ_EQ] = ACTIONS(652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(648), + [anon_sym_BANG_EQ] = ACTIONS(652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(648), + [anon_sym_GT_EQ] = ACTIONS(648), + [anon_sym_QMARK_QMARK] = ACTIONS(648), + [anon_sym_instanceof] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(412), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(657), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), + [sym__ternary_qmark] = ACTIONS(648), [sym_html_comment] = ACTIONS(5), }, - [88] = { - [sym_import] = STATE(1272), - [sym_variable_declaration] = STATE(111), - [sym_lexical_declaration] = STATE(111), - [sym_empty_statement] = STATE(111), - [sym_parenthesized_expression] = STATE(489), - [sym_expression] = STATE(817), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1342), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1342), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(489), - [sym_subscript_expression] = STATE(489), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1342), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1719), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(641), - [anon_sym_export] = ACTIONS(643), - [anon_sym_LBRACE] = ACTIONS(645), - [anon_sym_import] = ACTIONS(357), - [anon_sym_var] = ACTIONS(647), - [anon_sym_let] = ACTIONS(649), - [anon_sym_const] = ACTIONS(651), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(655), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(81)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(802), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_COMMA] = ACTIONS(648), + [anon_sym_RBRACE] = ACTIONS(648), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(648), + [anon_sym_in] = ACTIONS(652), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(652), + [anon_sym_DOT] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [sym_optional_chain] = ACTIONS(648), + [anon_sym_new] = ACTIONS(73), + [anon_sym_AMP_AMP] = ACTIONS(648), + [anon_sym_PIPE_PIPE] = ACTIONS(648), + [anon_sym_GT_GT] = ACTIONS(652), + [anon_sym_GT_GT_GT] = ACTIONS(648), + [anon_sym_LT_LT] = ACTIONS(648), + [anon_sym_AMP] = ACTIONS(652), + [anon_sym_CARET] = ACTIONS(648), + [anon_sym_PIPE] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_STAR_STAR] = ACTIONS(648), + [anon_sym_LT_EQ] = ACTIONS(648), + [anon_sym_EQ_EQ] = ACTIONS(652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(648), + [anon_sym_BANG_EQ] = ACTIONS(652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(648), + [anon_sym_GT_EQ] = ACTIONS(648), + [anon_sym_QMARK_QMARK] = ACTIONS(648), + [anon_sym_instanceof] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(657), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(643), - [anon_sym_get] = ACTIONS(643), - [anon_sym_set] = ACTIONS(643), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), + [sym__automatic_semicolon] = ACTIONS(648), + [sym__ternary_qmark] = ACTIONS(648), [sym_html_comment] = ACTIONS(5), }, - [89] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1175), - [sym_assignment_pattern] = STATE(1369), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1175), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1175), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [sym_pattern] = STATE(1207), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(659), - [anon_sym_export] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(665), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_RBRACK] = ACTIONS(669), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(671), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(82)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(560), + [sym_expression] = STATE(796), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1802), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1802), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(560), + [sym_subscript_expression] = STATE(560), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1143), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1802), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1803), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_STAR] = ACTIONS(668), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_COMMA] = ACTIONS(648), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_of] = ACTIONS(652), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(648), + [anon_sym_in] = ACTIONS(652), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(666), + [anon_sym_GT] = ACTIONS(652), + [anon_sym_DOT] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(530), + [anon_sym_function] = ACTIONS(198), + [sym_optional_chain] = ACTIONS(648), + [anon_sym_new] = ACTIONS(532), + [anon_sym_AMP_AMP] = ACTIONS(648), + [anon_sym_PIPE_PIPE] = ACTIONS(648), + [anon_sym_GT_GT] = ACTIONS(652), + [anon_sym_GT_GT_GT] = ACTIONS(648), + [anon_sym_LT_LT] = ACTIONS(648), + [anon_sym_AMP] = ACTIONS(652), + [anon_sym_CARET] = ACTIONS(648), + [anon_sym_PIPE] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_STAR_STAR] = ACTIONS(648), + [anon_sym_LT_EQ] = ACTIONS(648), + [anon_sym_EQ_EQ] = ACTIONS(652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(648), + [anon_sym_BANG_EQ] = ACTIONS(652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(648), + [anon_sym_GT_EQ] = ACTIONS(648), + [anon_sym_QMARK_QMARK] = ACTIONS(648), + [anon_sym_instanceof] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(540), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_typeof] = ACTIONS(540), + [anon_sym_void] = ACTIONS(540), + [anon_sym_delete] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(672), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(547), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), + [sym__automatic_semicolon] = ACTIONS(648), + [sym__ternary_qmark] = ACTIONS(648), [sym_html_comment] = ACTIONS(5), }, - [90] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(779), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1429), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_spread_element] = STATE(1279), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1280), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_RBRACK] = ACTIONS(677), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(111), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(83)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(913), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1857), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1857), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1141), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1857), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1779), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(582), + [anon_sym_export] = ACTIONS(584), + [anon_sym_STAR] = ACTIONS(674), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_of] = ACTIONS(652), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_in] = ACTIONS(652), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(656), + [anon_sym_GT] = ACTIONS(652), + [anon_sym_DOT] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(400), + [sym_optional_chain] = ACTIONS(648), + [anon_sym_new] = ACTIONS(594), + [anon_sym_AMP_AMP] = ACTIONS(648), + [anon_sym_PIPE_PIPE] = ACTIONS(648), + [anon_sym_GT_GT] = ACTIONS(652), + [anon_sym_GT_GT_GT] = ACTIONS(648), + [anon_sym_LT_LT] = ACTIONS(648), + [anon_sym_AMP] = ACTIONS(652), + [anon_sym_CARET] = ACTIONS(648), + [anon_sym_PIPE] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_STAR_STAR] = ACTIONS(648), + [anon_sym_LT_EQ] = ACTIONS(648), + [anon_sym_EQ_EQ] = ACTIONS(652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(648), + [anon_sym_BANG_EQ] = ACTIONS(652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(648), + [anon_sym_GT_EQ] = ACTIONS(648), + [anon_sym_QMARK_QMARK] = ACTIONS(648), + [anon_sym_instanceof] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(602), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_typeof] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(680), + [anon_sym_DASH_DASH] = ACTIONS(680), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(609), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(584), + [anon_sym_get] = ACTIONS(584), + [anon_sym_set] = ACTIONS(584), + [sym__ternary_qmark] = ACTIONS(648), [sym_html_comment] = ACTIONS(5), }, - [91] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(865), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1369), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), + [STATE(84)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(966), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), [sym_member_expression] = STATE(498), [sym_subscript_expression] = STATE(498), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1207), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_pattern_repeat1] = STATE(1341), - [sym_identifier] = ACTIONS(680), - [anon_sym_export] = ACTIONS(682), - [anon_sym_LBRACE] = ACTIONS(684), - [anon_sym_COMMA] = ACTIONS(665), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(682), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_RBRACK] = ACTIONS(669), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(688), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_in] = ACTIONS(652), + [anon_sym_COLON] = ACTIONS(648), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(656), + [anon_sym_GT] = ACTIONS(652), + [anon_sym_DOT] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [sym_optional_chain] = ACTIONS(648), + [anon_sym_new] = ACTIONS(447), + [anon_sym_AMP_AMP] = ACTIONS(648), + [anon_sym_PIPE_PIPE] = ACTIONS(648), + [anon_sym_GT_GT] = ACTIONS(652), + [anon_sym_GT_GT_GT] = ACTIONS(648), + [anon_sym_LT_LT] = ACTIONS(648), + [anon_sym_AMP] = ACTIONS(652), + [anon_sym_CARET] = ACTIONS(648), + [anon_sym_PIPE] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_STAR_STAR] = ACTIONS(648), + [anon_sym_LT_EQ] = ACTIONS(648), + [anon_sym_EQ_EQ] = ACTIONS(652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(648), + [anon_sym_BANG_EQ] = ACTIONS(652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(648), + [anon_sym_GT_EQ] = ACTIONS(648), + [anon_sym_QMARK_QMARK] = ACTIONS(648), + [anon_sym_instanceof] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(452), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(690), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(682), - [anon_sym_get] = ACTIONS(682), - [anon_sym_set] = ACTIONS(682), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym__ternary_qmark] = ACTIONS(648), [sym_html_comment] = ACTIONS(5), }, - [92] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1175), - [sym_assignment_pattern] = STATE(1343), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1175), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1175), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [sym_pattern] = STATE(1203), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_pattern_repeat1] = STATE(1346), - [sym_identifier] = ACTIONS(659), - [anon_sym_export] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(665), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_RBRACK] = ACTIONS(692), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(671), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(85)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(918), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1776), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1776), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1776), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1778), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(615), + [anon_sym_await] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_in] = ACTIONS(652), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(656), + [anon_sym_GT] = ACTIONS(652), + [anon_sym_DOT] = ACTIONS(652), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(626), + [anon_sym_function] = ACTIONS(400), + [sym_optional_chain] = ACTIONS(648), + [anon_sym_new] = ACTIONS(630), + [anon_sym_AMP_AMP] = ACTIONS(648), + [anon_sym_PIPE_PIPE] = ACTIONS(648), + [anon_sym_GT_GT] = ACTIONS(652), + [anon_sym_GT_GT_GT] = ACTIONS(648), + [anon_sym_LT_LT] = ACTIONS(648), + [anon_sym_AMP] = ACTIONS(652), + [anon_sym_CARET] = ACTIONS(648), + [anon_sym_PIPE] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_PERCENT] = ACTIONS(648), + [anon_sym_STAR_STAR] = ACTIONS(648), + [anon_sym_LT_EQ] = ACTIONS(648), + [anon_sym_EQ_EQ] = ACTIONS(652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(648), + [anon_sym_BANG_EQ] = ACTIONS(652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(648), + [anon_sym_GT_EQ] = ACTIONS(648), + [anon_sym_QMARK_QMARK] = ACTIONS(648), + [anon_sym_instanceof] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(635), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_typeof] = ACTIONS(635), + [anon_sym_void] = ACTIONS(635), + [anon_sym_delete] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(642), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), + [sym__ternary_qmark] = ACTIONS(648), [sym_html_comment] = ACTIONS(5), }, - [93] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(776), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1277), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1617), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1243), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(694), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(86)] = { + [ts_builtin_sym_end] = ACTIONS(690), + [sym_identifier] = ACTIONS(692), + [anon_sym_export] = ACTIONS(692), + [anon_sym_STAR] = ACTIONS(692), + [anon_sym_default] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_RBRACE] = ACTIONS(690), + [anon_sym_import] = ACTIONS(692), + [anon_sym_with] = ACTIONS(692), + [anon_sym_var] = ACTIONS(692), + [anon_sym_let] = ACTIONS(692), + [anon_sym_const] = ACTIONS(692), + [anon_sym_using] = ACTIONS(692), + [anon_sym_await] = ACTIONS(692), + [anon_sym_of] = ACTIONS(692), + [anon_sym_else] = ACTIONS(692), + [anon_sym_if] = ACTIONS(692), + [anon_sym_switch] = ACTIONS(692), + [anon_sym_for] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(690), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_in] = ACTIONS(692), + [anon_sym_while] = ACTIONS(692), + [anon_sym_do] = ACTIONS(692), + [anon_sym_try] = ACTIONS(692), + [anon_sym_break] = ACTIONS(692), + [anon_sym_continue] = ACTIONS(692), + [anon_sym_debugger] = ACTIONS(692), + [anon_sym_return] = ACTIONS(692), + [anon_sym_throw] = ACTIONS(692), + [anon_sym_case] = ACTIONS(692), + [anon_sym_yield] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(690), + [anon_sym_LT] = ACTIONS(692), + [anon_sym_GT] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(690), + [anon_sym_class] = ACTIONS(692), + [anon_sym_async] = ACTIONS(692), + [anon_sym_function] = ACTIONS(692), + [sym_optional_chain] = ACTIONS(690), + [anon_sym_new] = ACTIONS(692), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(692), + [anon_sym_GT_GT_GT] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(692), + [anon_sym_CARET] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(692), + [anon_sym_DASH] = ACTIONS(692), + [anon_sym_SLASH] = ACTIONS(692), + [anon_sym_PERCENT] = ACTIONS(690), + [anon_sym_STAR_STAR] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_EQ_EQ] = ACTIONS(692), + [anon_sym_EQ_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(692), + [anon_sym_BANG_EQ_EQ] = ACTIONS(690), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_QMARK_QMARK] = ACTIONS(690), + [anon_sym_instanceof] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(692), + [anon_sym_TILDE] = ACTIONS(690), + [anon_sym_typeof] = ACTIONS(692), + [anon_sym_void] = ACTIONS(692), + [anon_sym_delete] = ACTIONS(692), + [anon_sym_PLUS_PLUS] = ACTIONS(690), + [anon_sym_DASH_DASH] = ACTIONS(690), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [anon_sym_BQUOTE] = ACTIONS(690), + [sym_number] = ACTIONS(690), + [sym_private_property_identifier] = ACTIONS(690), + [sym_this] = ACTIONS(692), + [sym_super] = ACTIONS(692), + [sym_true] = ACTIONS(692), + [sym_false] = ACTIONS(692), + [sym_null] = ACTIONS(692), + [sym_undefined] = ACTIONS(692), + [anon_sym_AT] = ACTIONS(690), + [anon_sym_static] = ACTIONS(692), + [anon_sym_get] = ACTIONS(692), + [anon_sym_set] = ACTIONS(692), + [sym__automatic_semicolon] = ACTIONS(690), + [sym__ternary_qmark] = ACTIONS(690), [sym_html_comment] = ACTIONS(5), }, - [94] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(753), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1277), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1670), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1243), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(694), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(87)] = { + [ts_builtin_sym_end] = ACTIONS(694), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(696), + [anon_sym_default] = ACTIONS(696), + [anon_sym_LBRACE] = ACTIONS(694), + [anon_sym_COMMA] = ACTIONS(694), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_import] = ACTIONS(696), + [anon_sym_with] = ACTIONS(696), + [anon_sym_var] = ACTIONS(696), + [anon_sym_let] = ACTIONS(696), + [anon_sym_const] = ACTIONS(696), + [anon_sym_using] = ACTIONS(696), + [anon_sym_await] = ACTIONS(696), + [anon_sym_of] = ACTIONS(696), + [anon_sym_else] = ACTIONS(696), + [anon_sym_if] = ACTIONS(696), + [anon_sym_switch] = ACTIONS(696), + [anon_sym_for] = ACTIONS(696), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_in] = ACTIONS(696), + [anon_sym_while] = ACTIONS(696), + [anon_sym_do] = ACTIONS(696), + [anon_sym_try] = ACTIONS(696), + [anon_sym_break] = ACTIONS(696), + [anon_sym_continue] = ACTIONS(696), + [anon_sym_debugger] = ACTIONS(696), + [anon_sym_return] = ACTIONS(696), + [anon_sym_throw] = ACTIONS(696), + [anon_sym_case] = ACTIONS(696), + [anon_sym_yield] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(696), + [anon_sym_GT] = ACTIONS(696), + [anon_sym_DOT] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(694), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_class] = ACTIONS(696), + [anon_sym_async] = ACTIONS(696), + [anon_sym_function] = ACTIONS(696), + [sym_optional_chain] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_AMP_AMP] = ACTIONS(694), + [anon_sym_PIPE_PIPE] = ACTIONS(694), + [anon_sym_GT_GT] = ACTIONS(696), + [anon_sym_GT_GT_GT] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(694), + [anon_sym_AMP] = ACTIONS(696), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(696), + [anon_sym_PERCENT] = ACTIONS(694), + [anon_sym_STAR_STAR] = ACTIONS(694), + [anon_sym_LT_EQ] = ACTIONS(694), + [anon_sym_EQ_EQ] = ACTIONS(696), + [anon_sym_EQ_EQ_EQ] = ACTIONS(694), + [anon_sym_BANG_EQ] = ACTIONS(696), + [anon_sym_BANG_EQ_EQ] = ACTIONS(694), + [anon_sym_GT_EQ] = ACTIONS(694), + [anon_sym_QMARK_QMARK] = ACTIONS(694), + [anon_sym_instanceof] = ACTIONS(696), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(694), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(694), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [anon_sym_BQUOTE] = ACTIONS(694), + [sym_number] = ACTIONS(694), + [sym_private_property_identifier] = ACTIONS(694), + [sym_this] = ACTIONS(696), + [sym_super] = ACTIONS(696), + [sym_true] = ACTIONS(696), + [sym_false] = ACTIONS(696), + [sym_null] = ACTIONS(696), + [sym_undefined] = ACTIONS(696), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_static] = ACTIONS(696), + [anon_sym_get] = ACTIONS(696), + [anon_sym_set] = ACTIONS(696), + [sym__automatic_semicolon] = ACTIONS(694), + [sym__ternary_qmark] = ACTIONS(694), [sym_html_comment] = ACTIONS(5), }, - [95] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1175), - [sym_assignment_pattern] = STATE(1429), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1175), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1175), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [sym_pattern] = STATE(1280), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(659), - [anon_sym_export] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_COMMA] = ACTIONS(696), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_RBRACK] = ACTIONS(696), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(671), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(88)] = { + [ts_builtin_sym_end] = ACTIONS(694), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(696), + [anon_sym_STAR] = ACTIONS(696), + [anon_sym_default] = ACTIONS(696), + [anon_sym_LBRACE] = ACTIONS(694), + [anon_sym_COMMA] = ACTIONS(694), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_import] = ACTIONS(696), + [anon_sym_with] = ACTIONS(696), + [anon_sym_var] = ACTIONS(696), + [anon_sym_let] = ACTIONS(696), + [anon_sym_const] = ACTIONS(696), + [anon_sym_using] = ACTIONS(696), + [anon_sym_await] = ACTIONS(696), + [anon_sym_of] = ACTIONS(696), + [anon_sym_else] = ACTIONS(696), + [anon_sym_if] = ACTIONS(696), + [anon_sym_switch] = ACTIONS(696), + [anon_sym_for] = ACTIONS(696), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_in] = ACTIONS(696), + [anon_sym_while] = ACTIONS(696), + [anon_sym_do] = ACTIONS(696), + [anon_sym_try] = ACTIONS(696), + [anon_sym_break] = ACTIONS(696), + [anon_sym_continue] = ACTIONS(696), + [anon_sym_debugger] = ACTIONS(696), + [anon_sym_return] = ACTIONS(696), + [anon_sym_throw] = ACTIONS(696), + [anon_sym_case] = ACTIONS(696), + [anon_sym_yield] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(696), + [anon_sym_GT] = ACTIONS(696), + [anon_sym_DOT] = ACTIONS(696), + [anon_sym_DQUOTE] = ACTIONS(694), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_class] = ACTIONS(696), + [anon_sym_async] = ACTIONS(696), + [anon_sym_function] = ACTIONS(696), + [sym_optional_chain] = ACTIONS(694), + [anon_sym_new] = ACTIONS(696), + [anon_sym_AMP_AMP] = ACTIONS(694), + [anon_sym_PIPE_PIPE] = ACTIONS(694), + [anon_sym_GT_GT] = ACTIONS(696), + [anon_sym_GT_GT_GT] = ACTIONS(694), + [anon_sym_LT_LT] = ACTIONS(694), + [anon_sym_AMP] = ACTIONS(696), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(696), + [anon_sym_PERCENT] = ACTIONS(694), + [anon_sym_STAR_STAR] = ACTIONS(694), + [anon_sym_LT_EQ] = ACTIONS(694), + [anon_sym_EQ_EQ] = ACTIONS(696), + [anon_sym_EQ_EQ_EQ] = ACTIONS(694), + [anon_sym_BANG_EQ] = ACTIONS(696), + [anon_sym_BANG_EQ_EQ] = ACTIONS(694), + [anon_sym_GT_EQ] = ACTIONS(694), + [anon_sym_QMARK_QMARK] = ACTIONS(694), + [anon_sym_instanceof] = ACTIONS(696), + [anon_sym_BANG] = ACTIONS(696), + [anon_sym_TILDE] = ACTIONS(694), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(694), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), + [anon_sym_BQUOTE] = ACTIONS(694), + [sym_number] = ACTIONS(694), + [sym_private_property_identifier] = ACTIONS(694), + [sym_this] = ACTIONS(696), + [sym_super] = ACTIONS(696), + [sym_true] = ACTIONS(696), + [sym_false] = ACTIONS(696), + [sym_null] = ACTIONS(696), + [sym_undefined] = ACTIONS(696), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_static] = ACTIONS(696), + [anon_sym_get] = ACTIONS(696), + [anon_sym_set] = ACTIONS(696), + [sym__automatic_semicolon] = ACTIONS(698), + [sym__ternary_qmark] = ACTIONS(694), [sym_html_comment] = ACTIONS(5), }, - [96] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(754), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_spread_element] = STATE(1319), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1320), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_COMMA] = ACTIONS(698), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(700), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(89)] = { + [ts_builtin_sym_end] = ACTIONS(700), + [sym_identifier] = ACTIONS(702), + [anon_sym_export] = ACTIONS(702), + [anon_sym_STAR] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_COMMA] = ACTIONS(700), + [anon_sym_RBRACE] = ACTIONS(700), + [anon_sym_import] = ACTIONS(702), + [anon_sym_with] = ACTIONS(702), + [anon_sym_var] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_using] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_of] = ACTIONS(702), + [anon_sym_else] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_switch] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_SEMI] = ACTIONS(700), + [anon_sym_in] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [anon_sym_do] = ACTIONS(702), + [anon_sym_try] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_debugger] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_throw] = ACTIONS(702), + [anon_sym_case] = ACTIONS(702), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_LBRACK] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(702), + [anon_sym_GT] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(702), + [anon_sym_DQUOTE] = ACTIONS(700), + [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_class] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_function] = ACTIONS(702), + [sym_optional_chain] = ACTIONS(700), + [anon_sym_new] = ACTIONS(702), + [anon_sym_AMP_AMP] = ACTIONS(700), + [anon_sym_PIPE_PIPE] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(702), + [anon_sym_GT_GT_GT] = ACTIONS(700), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(702), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(702), + [anon_sym_SLASH] = ACTIONS(702), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_STAR_STAR] = ACTIONS(700), + [anon_sym_LT_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(702), + [anon_sym_EQ_EQ_EQ] = ACTIONS(700), + [anon_sym_BANG_EQ] = ACTIONS(702), + [anon_sym_BANG_EQ_EQ] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(700), + [anon_sym_QMARK_QMARK] = ACTIONS(700), + [anon_sym_instanceof] = ACTIONS(702), + [anon_sym_BANG] = ACTIONS(702), + [anon_sym_TILDE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(702), + [anon_sym_void] = ACTIONS(702), + [anon_sym_delete] = ACTIONS(702), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(700), + [sym_number] = ACTIONS(700), + [sym_private_property_identifier] = ACTIONS(700), + [sym_this] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_true] = ACTIONS(702), + [sym_false] = ACTIONS(702), + [sym_null] = ACTIONS(702), + [sym_undefined] = ACTIONS(702), + [anon_sym_AT] = ACTIONS(700), + [anon_sym_static] = ACTIONS(702), + [anon_sym_get] = ACTIONS(702), + [anon_sym_set] = ACTIONS(702), + [sym__automatic_semicolon] = ACTIONS(700), + [sym__ternary_qmark] = ACTIONS(700), [sym_html_comment] = ACTIONS(5), }, - [97] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1175), - [sym_assignment_pattern] = STATE(1277), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1175), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1175), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [sym_pattern] = STATE(1243), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(659), - [anon_sym_export] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(694), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(671), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(90)] = { + [ts_builtin_sym_end] = ACTIONS(704), + [sym_identifier] = ACTIONS(706), + [anon_sym_export] = ACTIONS(706), + [anon_sym_STAR] = ACTIONS(706), + [anon_sym_default] = ACTIONS(706), + [anon_sym_LBRACE] = ACTIONS(704), + [anon_sym_COMMA] = ACTIONS(704), + [anon_sym_RBRACE] = ACTIONS(704), + [anon_sym_import] = ACTIONS(706), + [anon_sym_with] = ACTIONS(706), + [anon_sym_var] = ACTIONS(706), + [anon_sym_let] = ACTIONS(706), + [anon_sym_const] = ACTIONS(706), + [anon_sym_using] = ACTIONS(706), + [anon_sym_await] = ACTIONS(706), + [anon_sym_of] = ACTIONS(706), + [anon_sym_else] = ACTIONS(706), + [anon_sym_if] = ACTIONS(706), + [anon_sym_switch] = ACTIONS(706), + [anon_sym_for] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_SEMI] = ACTIONS(704), + [anon_sym_in] = ACTIONS(706), + [anon_sym_while] = ACTIONS(706), + [anon_sym_do] = ACTIONS(706), + [anon_sym_try] = ACTIONS(706), + [anon_sym_break] = ACTIONS(706), + [anon_sym_continue] = ACTIONS(706), + [anon_sym_debugger] = ACTIONS(706), + [anon_sym_return] = ACTIONS(706), + [anon_sym_throw] = ACTIONS(706), + [anon_sym_case] = ACTIONS(706), + [anon_sym_yield] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(706), + [anon_sym_GT] = ACTIONS(706), + [anon_sym_DOT] = ACTIONS(706), + [anon_sym_DQUOTE] = ACTIONS(704), + [anon_sym_SQUOTE] = ACTIONS(704), + [anon_sym_class] = ACTIONS(706), + [anon_sym_async] = ACTIONS(706), + [anon_sym_function] = ACTIONS(706), + [sym_optional_chain] = ACTIONS(704), + [anon_sym_new] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(704), + [anon_sym_PIPE_PIPE] = ACTIONS(704), + [anon_sym_GT_GT] = ACTIONS(706), + [anon_sym_GT_GT_GT] = ACTIONS(704), + [anon_sym_LT_LT] = ACTIONS(704), + [anon_sym_AMP] = ACTIONS(706), + [anon_sym_CARET] = ACTIONS(704), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_PLUS] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(706), + [anon_sym_SLASH] = ACTIONS(706), + [anon_sym_PERCENT] = ACTIONS(704), + [anon_sym_STAR_STAR] = ACTIONS(704), + [anon_sym_LT_EQ] = ACTIONS(704), + [anon_sym_EQ_EQ] = ACTIONS(706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(704), + [anon_sym_BANG_EQ] = ACTIONS(706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(704), + [anon_sym_GT_EQ] = ACTIONS(704), + [anon_sym_QMARK_QMARK] = ACTIONS(704), + [anon_sym_instanceof] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(706), + [anon_sym_TILDE] = ACTIONS(704), + [anon_sym_typeof] = ACTIONS(706), + [anon_sym_void] = ACTIONS(706), + [anon_sym_delete] = ACTIONS(706), + [anon_sym_PLUS_PLUS] = ACTIONS(704), + [anon_sym_DASH_DASH] = ACTIONS(704), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), + [anon_sym_BQUOTE] = ACTIONS(704), + [sym_number] = ACTIONS(704), + [sym_private_property_identifier] = ACTIONS(704), + [sym_this] = ACTIONS(706), + [sym_super] = ACTIONS(706), + [sym_true] = ACTIONS(706), + [sym_false] = ACTIONS(706), + [sym_null] = ACTIONS(706), + [sym_undefined] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(704), + [anon_sym_static] = ACTIONS(706), + [anon_sym_get] = ACTIONS(706), + [anon_sym_set] = ACTIONS(706), + [sym__automatic_semicolon] = ACTIONS(704), + [sym__ternary_qmark] = ACTIONS(704), [sym_html_comment] = ACTIONS(5), }, - [98] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1175), - [sym_assignment_pattern] = STATE(1381), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1175), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1175), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [sym_pattern] = STATE(1298), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(659), - [anon_sym_export] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(704), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(671), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(91)] = { + [ts_builtin_sym_end] = ACTIONS(708), + [sym_identifier] = ACTIONS(710), + [anon_sym_export] = ACTIONS(710), + [anon_sym_STAR] = ACTIONS(710), + [anon_sym_default] = ACTIONS(710), + [anon_sym_LBRACE] = ACTIONS(708), + [anon_sym_COMMA] = ACTIONS(708), + [anon_sym_RBRACE] = ACTIONS(708), + [anon_sym_import] = ACTIONS(710), + [anon_sym_with] = ACTIONS(710), + [anon_sym_var] = ACTIONS(710), + [anon_sym_let] = ACTIONS(710), + [anon_sym_const] = ACTIONS(710), + [anon_sym_using] = ACTIONS(710), + [anon_sym_await] = ACTIONS(710), + [anon_sym_of] = ACTIONS(710), + [anon_sym_else] = ACTIONS(710), + [anon_sym_if] = ACTIONS(710), + [anon_sym_switch] = ACTIONS(710), + [anon_sym_for] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(708), + [anon_sym_in] = ACTIONS(710), + [anon_sym_while] = ACTIONS(710), + [anon_sym_do] = ACTIONS(710), + [anon_sym_try] = ACTIONS(710), + [anon_sym_break] = ACTIONS(710), + [anon_sym_continue] = ACTIONS(710), + [anon_sym_debugger] = ACTIONS(710), + [anon_sym_return] = ACTIONS(710), + [anon_sym_throw] = ACTIONS(710), + [anon_sym_case] = ACTIONS(710), + [anon_sym_yield] = ACTIONS(710), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LT] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(710), + [anon_sym_DOT] = ACTIONS(710), + [anon_sym_DQUOTE] = ACTIONS(708), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_class] = ACTIONS(710), + [anon_sym_async] = ACTIONS(710), + [anon_sym_function] = ACTIONS(710), + [sym_optional_chain] = ACTIONS(708), + [anon_sym_new] = ACTIONS(710), + [anon_sym_AMP_AMP] = ACTIONS(708), + [anon_sym_PIPE_PIPE] = ACTIONS(708), + [anon_sym_GT_GT] = ACTIONS(710), + [anon_sym_GT_GT_GT] = ACTIONS(708), + [anon_sym_LT_LT] = ACTIONS(708), + [anon_sym_AMP] = ACTIONS(710), + [anon_sym_CARET] = ACTIONS(708), + [anon_sym_PIPE] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_SLASH] = ACTIONS(710), + [anon_sym_PERCENT] = ACTIONS(708), + [anon_sym_STAR_STAR] = ACTIONS(708), + [anon_sym_LT_EQ] = ACTIONS(708), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_EQ_EQ_EQ] = ACTIONS(708), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ_EQ] = ACTIONS(708), + [anon_sym_GT_EQ] = ACTIONS(708), + [anon_sym_QMARK_QMARK] = ACTIONS(708), + [anon_sym_instanceof] = ACTIONS(710), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(708), + [anon_sym_typeof] = ACTIONS(710), + [anon_sym_void] = ACTIONS(710), + [anon_sym_delete] = ACTIONS(710), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), + [anon_sym_BQUOTE] = ACTIONS(708), + [sym_number] = ACTIONS(708), + [sym_private_property_identifier] = ACTIONS(708), + [sym_this] = ACTIONS(710), + [sym_super] = ACTIONS(710), + [sym_true] = ACTIONS(710), + [sym_false] = ACTIONS(710), + [sym_null] = ACTIONS(710), + [sym_undefined] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_static] = ACTIONS(710), + [anon_sym_get] = ACTIONS(710), + [anon_sym_set] = ACTIONS(710), + [sym__automatic_semicolon] = ACTIONS(712), + [sym__ternary_qmark] = ACTIONS(708), [sym_html_comment] = ACTIONS(5), }, - [99] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(769), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_spread_element] = STATE(1362), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1364), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_COMMA] = ACTIONS(698), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(706), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(92)] = { + [ts_builtin_sym_end] = ACTIONS(708), + [sym_identifier] = ACTIONS(710), + [anon_sym_export] = ACTIONS(710), + [anon_sym_STAR] = ACTIONS(714), + [anon_sym_default] = ACTIONS(710), + [anon_sym_LBRACE] = ACTIONS(708), + [anon_sym_COMMA] = ACTIONS(716), + [anon_sym_RBRACE] = ACTIONS(708), + [anon_sym_import] = ACTIONS(710), + [anon_sym_with] = ACTIONS(710), + [anon_sym_var] = ACTIONS(710), + [anon_sym_let] = ACTIONS(710), + [anon_sym_const] = ACTIONS(710), + [anon_sym_using] = ACTIONS(710), + [anon_sym_await] = ACTIONS(710), + [anon_sym_else] = ACTIONS(710), + [anon_sym_if] = ACTIONS(710), + [anon_sym_switch] = ACTIONS(710), + [anon_sym_for] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(708), + [anon_sym_in] = ACTIONS(714), + [anon_sym_while] = ACTIONS(710), + [anon_sym_do] = ACTIONS(710), + [anon_sym_try] = ACTIONS(710), + [anon_sym_break] = ACTIONS(710), + [anon_sym_continue] = ACTIONS(710), + [anon_sym_debugger] = ACTIONS(710), + [anon_sym_return] = ACTIONS(710), + [anon_sym_throw] = ACTIONS(710), + [anon_sym_case] = ACTIONS(710), + [anon_sym_yield] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(718), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LT] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(714), + [anon_sym_DOT] = ACTIONS(714), + [anon_sym_DQUOTE] = ACTIONS(708), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_class] = ACTIONS(710), + [anon_sym_async] = ACTIONS(710), + [anon_sym_function] = ACTIONS(710), + [sym_optional_chain] = ACTIONS(716), + [anon_sym_new] = ACTIONS(710), + [anon_sym_AMP_AMP] = ACTIONS(716), + [anon_sym_PIPE_PIPE] = ACTIONS(716), + [anon_sym_GT_GT] = ACTIONS(714), + [anon_sym_GT_GT_GT] = ACTIONS(716), + [anon_sym_LT_LT] = ACTIONS(716), + [anon_sym_AMP] = ACTIONS(714), + [anon_sym_CARET] = ACTIONS(716), + [anon_sym_PIPE] = ACTIONS(714), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_SLASH] = ACTIONS(710), + [anon_sym_PERCENT] = ACTIONS(716), + [anon_sym_STAR_STAR] = ACTIONS(716), + [anon_sym_LT_EQ] = ACTIONS(716), + [anon_sym_EQ_EQ] = ACTIONS(714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(716), + [anon_sym_BANG_EQ] = ACTIONS(714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(716), + [anon_sym_GT_EQ] = ACTIONS(716), + [anon_sym_QMARK_QMARK] = ACTIONS(716), + [anon_sym_instanceof] = ACTIONS(714), + [anon_sym_BANG] = ACTIONS(710), + [anon_sym_TILDE] = ACTIONS(708), + [anon_sym_typeof] = ACTIONS(710), + [anon_sym_void] = ACTIONS(710), + [anon_sym_delete] = ACTIONS(710), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(708), + [sym_number] = ACTIONS(708), + [sym_private_property_identifier] = ACTIONS(708), + [sym_this] = ACTIONS(710), + [sym_super] = ACTIONS(710), + [sym_true] = ACTIONS(710), + [sym_false] = ACTIONS(710), + [sym_null] = ACTIONS(710), + [sym_undefined] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_static] = ACTIONS(710), + [anon_sym_get] = ACTIONS(710), + [anon_sym_set] = ACTIONS(710), + [sym__automatic_semicolon] = ACTIONS(720), + [sym__ternary_qmark] = ACTIONS(716), [sym_html_comment] = ACTIONS(5), }, - [100] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1175), - [sym_assignment_pattern] = STATE(1381), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1175), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1175), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [sym_pattern] = STATE(1298), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(659), - [anon_sym_export] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(708), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(671), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(93)] = { + [ts_builtin_sym_end] = ACTIONS(722), + [sym_identifier] = ACTIONS(724), + [anon_sym_export] = ACTIONS(724), + [anon_sym_STAR] = ACTIONS(726), + [anon_sym_default] = ACTIONS(724), + [anon_sym_LBRACE] = ACTIONS(722), + [anon_sym_COMMA] = ACTIONS(728), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_import] = ACTIONS(724), + [anon_sym_with] = ACTIONS(724), + [anon_sym_var] = ACTIONS(724), + [anon_sym_let] = ACTIONS(724), + [anon_sym_const] = ACTIONS(724), + [anon_sym_using] = ACTIONS(724), + [anon_sym_await] = ACTIONS(724), + [anon_sym_else] = ACTIONS(724), + [anon_sym_if] = ACTIONS(724), + [anon_sym_switch] = ACTIONS(724), + [anon_sym_for] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(722), + [anon_sym_SEMI] = ACTIONS(722), + [anon_sym_in] = ACTIONS(726), + [anon_sym_while] = ACTIONS(724), + [anon_sym_do] = ACTIONS(724), + [anon_sym_try] = ACTIONS(724), + [anon_sym_break] = ACTIONS(724), + [anon_sym_continue] = ACTIONS(724), + [anon_sym_debugger] = ACTIONS(724), + [anon_sym_return] = ACTIONS(724), + [anon_sym_throw] = ACTIONS(724), + [anon_sym_case] = ACTIONS(724), + [anon_sym_yield] = ACTIONS(724), + [anon_sym_LBRACK] = ACTIONS(722), + [anon_sym_LT] = ACTIONS(724), + [anon_sym_GT] = ACTIONS(726), + [anon_sym_DOT] = ACTIONS(726), + [anon_sym_DQUOTE] = ACTIONS(722), + [anon_sym_SQUOTE] = ACTIONS(722), + [anon_sym_class] = ACTIONS(724), + [anon_sym_async] = ACTIONS(724), + [anon_sym_function] = ACTIONS(724), + [sym_optional_chain] = ACTIONS(728), + [anon_sym_new] = ACTIONS(724), + [anon_sym_AMP_AMP] = ACTIONS(728), + [anon_sym_PIPE_PIPE] = ACTIONS(728), + [anon_sym_GT_GT] = ACTIONS(726), + [anon_sym_GT_GT_GT] = ACTIONS(728), + [anon_sym_LT_LT] = ACTIONS(728), + [anon_sym_AMP] = ACTIONS(726), + [anon_sym_CARET] = ACTIONS(728), + [anon_sym_PIPE] = ACTIONS(726), + [anon_sym_PLUS] = ACTIONS(724), + [anon_sym_DASH] = ACTIONS(724), + [anon_sym_SLASH] = ACTIONS(724), + [anon_sym_PERCENT] = ACTIONS(728), + [anon_sym_STAR_STAR] = ACTIONS(728), + [anon_sym_LT_EQ] = ACTIONS(728), + [anon_sym_EQ_EQ] = ACTIONS(726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(728), + [anon_sym_BANG_EQ] = ACTIONS(726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(728), + [anon_sym_GT_EQ] = ACTIONS(728), + [anon_sym_QMARK_QMARK] = ACTIONS(728), + [anon_sym_instanceof] = ACTIONS(726), + [anon_sym_BANG] = ACTIONS(724), + [anon_sym_TILDE] = ACTIONS(722), + [anon_sym_typeof] = ACTIONS(724), + [anon_sym_void] = ACTIONS(724), + [anon_sym_delete] = ACTIONS(724), + [anon_sym_PLUS_PLUS] = ACTIONS(722), + [anon_sym_DASH_DASH] = ACTIONS(722), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), + [anon_sym_BQUOTE] = ACTIONS(722), + [sym_number] = ACTIONS(722), + [sym_private_property_identifier] = ACTIONS(722), + [sym_this] = ACTIONS(724), + [sym_super] = ACTIONS(724), + [sym_true] = ACTIONS(724), + [sym_false] = ACTIONS(724), + [sym_null] = ACTIONS(724), + [sym_undefined] = ACTIONS(724), + [anon_sym_AT] = ACTIONS(722), + [anon_sym_static] = ACTIONS(724), + [anon_sym_get] = ACTIONS(724), + [anon_sym_set] = ACTIONS(724), + [sym__automatic_semicolon] = ACTIONS(730), + [sym__ternary_qmark] = ACTIONS(728), [sym_html_comment] = ACTIONS(5), }, - [101] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(755), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_spread_element] = STATE(1303), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [aux_sym_array_repeat1] = STATE(1304), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_COMMA] = ACTIONS(698), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(710), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(94)] = { + [ts_builtin_sym_end] = ACTIONS(732), + [sym_identifier] = ACTIONS(734), + [anon_sym_export] = ACTIONS(734), + [anon_sym_STAR] = ACTIONS(736), + [anon_sym_default] = ACTIONS(734), + [anon_sym_LBRACE] = ACTIONS(732), + [anon_sym_COMMA] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(732), + [anon_sym_import] = ACTIONS(734), + [anon_sym_with] = ACTIONS(734), + [anon_sym_var] = ACTIONS(734), + [anon_sym_let] = ACTIONS(734), + [anon_sym_const] = ACTIONS(734), + [anon_sym_using] = ACTIONS(734), + [anon_sym_await] = ACTIONS(734), + [anon_sym_else] = ACTIONS(734), + [anon_sym_if] = ACTIONS(734), + [anon_sym_switch] = ACTIONS(734), + [anon_sym_for] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(732), + [anon_sym_SEMI] = ACTIONS(732), + [anon_sym_in] = ACTIONS(736), + [anon_sym_while] = ACTIONS(734), + [anon_sym_do] = ACTIONS(734), + [anon_sym_try] = ACTIONS(734), + [anon_sym_break] = ACTIONS(734), + [anon_sym_continue] = ACTIONS(734), + [anon_sym_debugger] = ACTIONS(734), + [anon_sym_return] = ACTIONS(734), + [anon_sym_throw] = ACTIONS(734), + [anon_sym_case] = ACTIONS(734), + [anon_sym_yield] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(732), + [anon_sym_LT] = ACTIONS(734), + [anon_sym_GT] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(732), + [anon_sym_SQUOTE] = ACTIONS(732), + [anon_sym_class] = ACTIONS(734), + [anon_sym_async] = ACTIONS(734), + [anon_sym_function] = ACTIONS(734), + [sym_optional_chain] = ACTIONS(738), + [anon_sym_new] = ACTIONS(734), + [anon_sym_AMP_AMP] = ACTIONS(738), + [anon_sym_PIPE_PIPE] = ACTIONS(738), + [anon_sym_GT_GT] = ACTIONS(736), + [anon_sym_GT_GT_GT] = ACTIONS(738), + [anon_sym_LT_LT] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(736), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(734), + [anon_sym_SLASH] = ACTIONS(734), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_STAR_STAR] = ACTIONS(738), + [anon_sym_LT_EQ] = ACTIONS(738), + [anon_sym_EQ_EQ] = ACTIONS(736), + [anon_sym_EQ_EQ_EQ] = ACTIONS(738), + [anon_sym_BANG_EQ] = ACTIONS(736), + [anon_sym_BANG_EQ_EQ] = ACTIONS(738), + [anon_sym_GT_EQ] = ACTIONS(738), + [anon_sym_QMARK_QMARK] = ACTIONS(738), + [anon_sym_instanceof] = ACTIONS(736), + [anon_sym_BANG] = ACTIONS(734), + [anon_sym_TILDE] = ACTIONS(732), + [anon_sym_typeof] = ACTIONS(734), + [anon_sym_void] = ACTIONS(734), + [anon_sym_delete] = ACTIONS(734), + [anon_sym_PLUS_PLUS] = ACTIONS(732), + [anon_sym_DASH_DASH] = ACTIONS(732), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(732), + [sym_number] = ACTIONS(732), + [sym_private_property_identifier] = ACTIONS(732), + [sym_this] = ACTIONS(734), + [sym_super] = ACTIONS(734), + [sym_true] = ACTIONS(734), + [sym_false] = ACTIONS(734), + [sym_null] = ACTIONS(734), + [sym_undefined] = ACTIONS(734), + [anon_sym_AT] = ACTIONS(732), + [anon_sym_static] = ACTIONS(734), + [anon_sym_get] = ACTIONS(734), + [anon_sym_set] = ACTIONS(734), + [sym__automatic_semicolon] = ACTIONS(740), + [sym__ternary_qmark] = ACTIONS(738), [sym_html_comment] = ACTIONS(5), }, - [102] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(779), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_spread_element] = STATE(1279), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_COMMA] = ACTIONS(712), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(712), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_RBRACK] = ACTIONS(712), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(95)] = { + [ts_builtin_sym_end] = ACTIONS(742), + [sym_identifier] = ACTIONS(744), + [anon_sym_export] = ACTIONS(744), + [anon_sym_STAR] = ACTIONS(746), + [anon_sym_default] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(742), + [anon_sym_COMMA] = ACTIONS(748), + [anon_sym_RBRACE] = ACTIONS(742), + [anon_sym_import] = ACTIONS(744), + [anon_sym_with] = ACTIONS(744), + [anon_sym_var] = ACTIONS(744), + [anon_sym_let] = ACTIONS(744), + [anon_sym_const] = ACTIONS(744), + [anon_sym_using] = ACTIONS(744), + [anon_sym_await] = ACTIONS(744), + [anon_sym_else] = ACTIONS(744), + [anon_sym_if] = ACTIONS(744), + [anon_sym_switch] = ACTIONS(744), + [anon_sym_for] = ACTIONS(744), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_SEMI] = ACTIONS(742), + [anon_sym_in] = ACTIONS(746), + [anon_sym_while] = ACTIONS(744), + [anon_sym_do] = ACTIONS(744), + [anon_sym_try] = ACTIONS(744), + [anon_sym_break] = ACTIONS(744), + [anon_sym_continue] = ACTIONS(744), + [anon_sym_debugger] = ACTIONS(744), + [anon_sym_return] = ACTIONS(744), + [anon_sym_throw] = ACTIONS(744), + [anon_sym_case] = ACTIONS(744), + [anon_sym_yield] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(742), + [anon_sym_LT] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(746), + [anon_sym_DOT] = ACTIONS(746), + [anon_sym_DQUOTE] = ACTIONS(742), + [anon_sym_SQUOTE] = ACTIONS(742), + [anon_sym_class] = ACTIONS(744), + [anon_sym_async] = ACTIONS(744), + [anon_sym_function] = ACTIONS(744), + [sym_optional_chain] = ACTIONS(748), + [anon_sym_new] = ACTIONS(744), + [anon_sym_AMP_AMP] = ACTIONS(748), + [anon_sym_PIPE_PIPE] = ACTIONS(748), + [anon_sym_GT_GT] = ACTIONS(746), + [anon_sym_GT_GT_GT] = ACTIONS(748), + [anon_sym_LT_LT] = ACTIONS(748), + [anon_sym_AMP] = ACTIONS(746), + [anon_sym_CARET] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(744), + [anon_sym_PERCENT] = ACTIONS(748), + [anon_sym_STAR_STAR] = ACTIONS(748), + [anon_sym_LT_EQ] = ACTIONS(748), + [anon_sym_EQ_EQ] = ACTIONS(746), + [anon_sym_EQ_EQ_EQ] = ACTIONS(748), + [anon_sym_BANG_EQ] = ACTIONS(746), + [anon_sym_BANG_EQ_EQ] = ACTIONS(748), + [anon_sym_GT_EQ] = ACTIONS(748), + [anon_sym_QMARK_QMARK] = ACTIONS(748), + [anon_sym_instanceof] = ACTIONS(746), + [anon_sym_BANG] = ACTIONS(744), + [anon_sym_TILDE] = ACTIONS(742), + [anon_sym_typeof] = ACTIONS(744), + [anon_sym_void] = ACTIONS(744), + [anon_sym_delete] = ACTIONS(744), + [anon_sym_PLUS_PLUS] = ACTIONS(742), + [anon_sym_DASH_DASH] = ACTIONS(742), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(742), + [sym_number] = ACTIONS(742), + [sym_private_property_identifier] = ACTIONS(742), + [sym_this] = ACTIONS(744), + [sym_super] = ACTIONS(744), + [sym_true] = ACTIONS(744), + [sym_false] = ACTIONS(744), + [sym_null] = ACTIONS(744), + [sym_undefined] = ACTIONS(744), + [anon_sym_AT] = ACTIONS(742), + [anon_sym_static] = ACTIONS(744), + [anon_sym_get] = ACTIONS(744), + [anon_sym_set] = ACTIONS(744), + [sym__automatic_semicolon] = ACTIONS(750), + [sym__ternary_qmark] = ACTIONS(748), [sym_html_comment] = ACTIONS(5), }, - [103] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(821), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1135), - [sym_assignment_pattern] = STATE(1454), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1135), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1135), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [sym_pattern] = STATE(1282), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(611), - [anon_sym_export] = ACTIONS(613), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(96)] = { + [ts_builtin_sym_end] = ACTIONS(752), + [sym_identifier] = ACTIONS(754), + [anon_sym_export] = ACTIONS(754), + [anon_sym_STAR] = ACTIONS(756), + [anon_sym_default] = ACTIONS(754), + [anon_sym_LBRACE] = ACTIONS(752), + [anon_sym_COMMA] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(752), + [anon_sym_import] = ACTIONS(754), + [anon_sym_with] = ACTIONS(754), + [anon_sym_var] = ACTIONS(754), + [anon_sym_let] = ACTIONS(754), + [anon_sym_const] = ACTIONS(754), + [anon_sym_using] = ACTIONS(754), + [anon_sym_await] = ACTIONS(754), + [anon_sym_else] = ACTIONS(754), + [anon_sym_if] = ACTIONS(754), + [anon_sym_switch] = ACTIONS(754), + [anon_sym_for] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(752), + [anon_sym_in] = ACTIONS(756), + [anon_sym_while] = ACTIONS(754), + [anon_sym_do] = ACTIONS(754), + [anon_sym_try] = ACTIONS(754), + [anon_sym_break] = ACTIONS(754), + [anon_sym_continue] = ACTIONS(754), + [anon_sym_debugger] = ACTIONS(754), + [anon_sym_return] = ACTIONS(754), + [anon_sym_throw] = ACTIONS(754), + [anon_sym_case] = ACTIONS(754), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(752), + [anon_sym_LT] = ACTIONS(754), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_DOT] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(752), + [anon_sym_SQUOTE] = ACTIONS(752), + [anon_sym_class] = ACTIONS(754), + [anon_sym_async] = ACTIONS(754), + [anon_sym_function] = ACTIONS(754), + [sym_optional_chain] = ACTIONS(758), + [anon_sym_new] = ACTIONS(754), + [anon_sym_AMP_AMP] = ACTIONS(758), + [anon_sym_PIPE_PIPE] = ACTIONS(758), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_GT_GT_GT] = ACTIONS(758), + [anon_sym_LT_LT] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(756), + [anon_sym_CARET] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PLUS] = ACTIONS(754), + [anon_sym_DASH] = ACTIONS(754), + [anon_sym_SLASH] = ACTIONS(754), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_LT_EQ] = ACTIONS(758), + [anon_sym_EQ_EQ] = ACTIONS(756), + [anon_sym_EQ_EQ_EQ] = ACTIONS(758), + [anon_sym_BANG_EQ] = ACTIONS(756), + [anon_sym_BANG_EQ_EQ] = ACTIONS(758), + [anon_sym_GT_EQ] = ACTIONS(758), + [anon_sym_QMARK_QMARK] = ACTIONS(758), + [anon_sym_instanceof] = ACTIONS(756), + [anon_sym_BANG] = ACTIONS(754), + [anon_sym_TILDE] = ACTIONS(752), + [anon_sym_typeof] = ACTIONS(754), + [anon_sym_void] = ACTIONS(754), + [anon_sym_delete] = ACTIONS(754), + [anon_sym_PLUS_PLUS] = ACTIONS(752), + [anon_sym_DASH_DASH] = ACTIONS(752), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(623), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(613), - [anon_sym_get] = ACTIONS(613), - [anon_sym_set] = ACTIONS(613), + [anon_sym_BQUOTE] = ACTIONS(752), + [sym_number] = ACTIONS(752), + [sym_private_property_identifier] = ACTIONS(752), + [sym_this] = ACTIONS(754), + [sym_super] = ACTIONS(754), + [sym_true] = ACTIONS(754), + [sym_false] = ACTIONS(754), + [sym_null] = ACTIONS(754), + [sym_undefined] = ACTIONS(754), + [anon_sym_AT] = ACTIONS(752), + [anon_sym_static] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [sym__automatic_semicolon] = ACTIONS(760), + [sym__ternary_qmark] = ACTIONS(758), [sym_html_comment] = ACTIONS(5), }, - [104] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(771), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_spread_element] = STATE(1675), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1675), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_RBRACE] = ACTIONS(714), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(97)] = { + [ts_builtin_sym_end] = ACTIONS(762), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(766), + [anon_sym_default] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(762), + [anon_sym_COMMA] = ACTIONS(768), + [anon_sym_RBRACE] = ACTIONS(762), + [anon_sym_import] = ACTIONS(764), + [anon_sym_with] = ACTIONS(764), + [anon_sym_var] = ACTIONS(764), + [anon_sym_let] = ACTIONS(764), + [anon_sym_const] = ACTIONS(764), + [anon_sym_using] = ACTIONS(764), + [anon_sym_await] = ACTIONS(764), + [anon_sym_else] = ACTIONS(764), + [anon_sym_if] = ACTIONS(764), + [anon_sym_switch] = ACTIONS(764), + [anon_sym_for] = ACTIONS(764), + [anon_sym_LPAREN] = ACTIONS(762), + [anon_sym_SEMI] = ACTIONS(762), + [anon_sym_in] = ACTIONS(766), + [anon_sym_while] = ACTIONS(764), + [anon_sym_do] = ACTIONS(764), + [anon_sym_try] = ACTIONS(764), + [anon_sym_break] = ACTIONS(764), + [anon_sym_continue] = ACTIONS(764), + [anon_sym_debugger] = ACTIONS(764), + [anon_sym_return] = ACTIONS(764), + [anon_sym_throw] = ACTIONS(764), + [anon_sym_case] = ACTIONS(764), + [anon_sym_yield] = ACTIONS(764), + [anon_sym_LBRACK] = ACTIONS(762), + [anon_sym_LT] = ACTIONS(764), + [anon_sym_GT] = ACTIONS(766), + [anon_sym_DOT] = ACTIONS(766), + [anon_sym_DQUOTE] = ACTIONS(762), + [anon_sym_SQUOTE] = ACTIONS(762), + [anon_sym_class] = ACTIONS(764), + [anon_sym_async] = ACTIONS(764), + [anon_sym_function] = ACTIONS(764), + [sym_optional_chain] = ACTIONS(768), + [anon_sym_new] = ACTIONS(764), + [anon_sym_AMP_AMP] = ACTIONS(768), + [anon_sym_PIPE_PIPE] = ACTIONS(768), + [anon_sym_GT_GT] = ACTIONS(766), + [anon_sym_GT_GT_GT] = ACTIONS(768), + [anon_sym_LT_LT] = ACTIONS(768), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_CARET] = ACTIONS(768), + [anon_sym_PIPE] = ACTIONS(766), + [anon_sym_PLUS] = ACTIONS(764), + [anon_sym_DASH] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(764), + [anon_sym_PERCENT] = ACTIONS(768), + [anon_sym_STAR_STAR] = ACTIONS(768), + [anon_sym_LT_EQ] = ACTIONS(768), + [anon_sym_EQ_EQ] = ACTIONS(766), + [anon_sym_EQ_EQ_EQ] = ACTIONS(768), + [anon_sym_BANG_EQ] = ACTIONS(766), + [anon_sym_BANG_EQ_EQ] = ACTIONS(768), + [anon_sym_GT_EQ] = ACTIONS(768), + [anon_sym_QMARK_QMARK] = ACTIONS(768), + [anon_sym_instanceof] = ACTIONS(766), + [anon_sym_BANG] = ACTIONS(764), + [anon_sym_TILDE] = ACTIONS(762), + [anon_sym_typeof] = ACTIONS(764), + [anon_sym_void] = ACTIONS(764), + [anon_sym_delete] = ACTIONS(764), + [anon_sym_PLUS_PLUS] = ACTIONS(762), + [anon_sym_DASH_DASH] = ACTIONS(762), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(762), + [sym_number] = ACTIONS(762), + [sym_private_property_identifier] = ACTIONS(762), + [sym_this] = ACTIONS(764), + [sym_super] = ACTIONS(764), + [sym_true] = ACTIONS(764), + [sym_false] = ACTIONS(764), + [sym_null] = ACTIONS(764), + [sym_undefined] = ACTIONS(764), + [anon_sym_AT] = ACTIONS(762), + [anon_sym_static] = ACTIONS(764), + [anon_sym_get] = ACTIONS(764), + [anon_sym_set] = ACTIONS(764), + [sym__automatic_semicolon] = ACTIONS(770), + [sym__ternary_qmark] = ACTIONS(768), [sym_html_comment] = ACTIONS(5), }, - [105] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(797), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_spread_element] = STATE(1690), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1690), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_RBRACE] = ACTIONS(716), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(98)] = { + [ts_builtin_sym_end] = ACTIONS(772), + [sym_identifier] = ACTIONS(774), + [anon_sym_export] = ACTIONS(774), + [anon_sym_STAR] = ACTIONS(776), + [anon_sym_default] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_COMMA] = ACTIONS(778), + [anon_sym_RBRACE] = ACTIONS(772), + [anon_sym_import] = ACTIONS(774), + [anon_sym_with] = ACTIONS(774), + [anon_sym_var] = ACTIONS(774), + [anon_sym_let] = ACTIONS(774), + [anon_sym_const] = ACTIONS(774), + [anon_sym_using] = ACTIONS(774), + [anon_sym_await] = ACTIONS(774), + [anon_sym_else] = ACTIONS(774), + [anon_sym_if] = ACTIONS(774), + [anon_sym_switch] = ACTIONS(774), + [anon_sym_for] = ACTIONS(774), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_SEMI] = ACTIONS(772), + [anon_sym_in] = ACTIONS(776), + [anon_sym_while] = ACTIONS(774), + [anon_sym_do] = ACTIONS(774), + [anon_sym_try] = ACTIONS(774), + [anon_sym_break] = ACTIONS(774), + [anon_sym_continue] = ACTIONS(774), + [anon_sym_debugger] = ACTIONS(774), + [anon_sym_return] = ACTIONS(774), + [anon_sym_throw] = ACTIONS(774), + [anon_sym_case] = ACTIONS(774), + [anon_sym_yield] = ACTIONS(774), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_LT] = ACTIONS(774), + [anon_sym_GT] = ACTIONS(776), + [anon_sym_DOT] = ACTIONS(776), + [anon_sym_DQUOTE] = ACTIONS(772), + [anon_sym_SQUOTE] = ACTIONS(772), + [anon_sym_class] = ACTIONS(774), + [anon_sym_async] = ACTIONS(774), + [anon_sym_function] = ACTIONS(774), + [sym_optional_chain] = ACTIONS(778), + [anon_sym_new] = ACTIONS(774), + [anon_sym_AMP_AMP] = ACTIONS(778), + [anon_sym_PIPE_PIPE] = ACTIONS(778), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_GT_GT_GT] = ACTIONS(778), + [anon_sym_LT_LT] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(776), + [anon_sym_CARET] = ACTIONS(778), + [anon_sym_PIPE] = ACTIONS(776), + [anon_sym_PLUS] = ACTIONS(774), + [anon_sym_DASH] = ACTIONS(774), + [anon_sym_SLASH] = ACTIONS(774), + [anon_sym_PERCENT] = ACTIONS(778), + [anon_sym_STAR_STAR] = ACTIONS(778), + [anon_sym_LT_EQ] = ACTIONS(778), + [anon_sym_EQ_EQ] = ACTIONS(776), + [anon_sym_EQ_EQ_EQ] = ACTIONS(778), + [anon_sym_BANG_EQ] = ACTIONS(776), + [anon_sym_BANG_EQ_EQ] = ACTIONS(778), + [anon_sym_GT_EQ] = ACTIONS(778), + [anon_sym_QMARK_QMARK] = ACTIONS(778), + [anon_sym_instanceof] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(774), + [anon_sym_TILDE] = ACTIONS(772), + [anon_sym_typeof] = ACTIONS(774), + [anon_sym_void] = ACTIONS(774), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(772), + [anon_sym_DASH_DASH] = ACTIONS(772), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(772), + [sym_number] = ACTIONS(772), + [sym_private_property_identifier] = ACTIONS(772), + [sym_this] = ACTIONS(774), + [sym_super] = ACTIONS(774), + [sym_true] = ACTIONS(774), + [sym_false] = ACTIONS(774), + [sym_null] = ACTIONS(774), + [sym_undefined] = ACTIONS(774), + [anon_sym_AT] = ACTIONS(772), + [anon_sym_static] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [sym__automatic_semicolon] = ACTIONS(780), + [sym__ternary_qmark] = ACTIONS(778), [sym_html_comment] = ACTIONS(5), }, - [106] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1175), - [sym_assignment_pattern] = STATE(1454), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1175), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1175), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [sym_pattern] = STATE(1282), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(659), - [anon_sym_export] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(671), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(99)] = { + [ts_builtin_sym_end] = ACTIONS(782), + [sym_identifier] = ACTIONS(784), + [anon_sym_export] = ACTIONS(784), + [anon_sym_STAR] = ACTIONS(786), + [anon_sym_default] = ACTIONS(784), + [anon_sym_LBRACE] = ACTIONS(782), + [anon_sym_COMMA] = ACTIONS(788), + [anon_sym_RBRACE] = ACTIONS(782), + [anon_sym_import] = ACTIONS(784), + [anon_sym_with] = ACTIONS(784), + [anon_sym_var] = ACTIONS(784), + [anon_sym_let] = ACTIONS(784), + [anon_sym_const] = ACTIONS(784), + [anon_sym_using] = ACTIONS(784), + [anon_sym_await] = ACTIONS(784), + [anon_sym_else] = ACTIONS(784), + [anon_sym_if] = ACTIONS(784), + [anon_sym_switch] = ACTIONS(784), + [anon_sym_for] = ACTIONS(784), + [anon_sym_LPAREN] = ACTIONS(782), + [anon_sym_SEMI] = ACTIONS(782), + [anon_sym_in] = ACTIONS(786), + [anon_sym_while] = ACTIONS(784), + [anon_sym_do] = ACTIONS(784), + [anon_sym_try] = ACTIONS(784), + [anon_sym_break] = ACTIONS(784), + [anon_sym_continue] = ACTIONS(784), + [anon_sym_debugger] = ACTIONS(784), + [anon_sym_return] = ACTIONS(784), + [anon_sym_throw] = ACTIONS(784), + [anon_sym_case] = ACTIONS(784), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(782), + [anon_sym_LT] = ACTIONS(784), + [anon_sym_GT] = ACTIONS(786), + [anon_sym_DOT] = ACTIONS(786), + [anon_sym_DQUOTE] = ACTIONS(782), + [anon_sym_SQUOTE] = ACTIONS(782), + [anon_sym_class] = ACTIONS(784), + [anon_sym_async] = ACTIONS(784), + [anon_sym_function] = ACTIONS(784), + [sym_optional_chain] = ACTIONS(788), + [anon_sym_new] = ACTIONS(784), + [anon_sym_AMP_AMP] = ACTIONS(788), + [anon_sym_PIPE_PIPE] = ACTIONS(788), + [anon_sym_GT_GT] = ACTIONS(786), + [anon_sym_GT_GT_GT] = ACTIONS(788), + [anon_sym_LT_LT] = ACTIONS(788), + [anon_sym_AMP] = ACTIONS(786), + [anon_sym_CARET] = ACTIONS(788), + [anon_sym_PIPE] = ACTIONS(786), + [anon_sym_PLUS] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_PERCENT] = ACTIONS(788), + [anon_sym_STAR_STAR] = ACTIONS(788), + [anon_sym_LT_EQ] = ACTIONS(788), + [anon_sym_EQ_EQ] = ACTIONS(786), + [anon_sym_EQ_EQ_EQ] = ACTIONS(788), + [anon_sym_BANG_EQ] = ACTIONS(786), + [anon_sym_BANG_EQ_EQ] = ACTIONS(788), + [anon_sym_GT_EQ] = ACTIONS(788), + [anon_sym_QMARK_QMARK] = ACTIONS(788), + [anon_sym_instanceof] = ACTIONS(786), + [anon_sym_BANG] = ACTIONS(784), + [anon_sym_TILDE] = ACTIONS(782), + [anon_sym_typeof] = ACTIONS(784), + [anon_sym_void] = ACTIONS(784), + [anon_sym_delete] = ACTIONS(784), + [anon_sym_PLUS_PLUS] = ACTIONS(782), + [anon_sym_DASH_DASH] = ACTIONS(782), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), + [anon_sym_BQUOTE] = ACTIONS(782), + [sym_number] = ACTIONS(782), + [sym_private_property_identifier] = ACTIONS(782), + [sym_this] = ACTIONS(784), + [sym_super] = ACTIONS(784), + [sym_true] = ACTIONS(784), + [sym_false] = ACTIONS(784), + [sym_null] = ACTIONS(784), + [sym_undefined] = ACTIONS(784), + [anon_sym_AT] = ACTIONS(782), + [anon_sym_static] = ACTIONS(784), + [anon_sym_get] = ACTIONS(784), + [anon_sym_set] = ACTIONS(784), + [sym__automatic_semicolon] = ACTIONS(790), + [sym__ternary_qmark] = ACTIONS(788), [sym_html_comment] = ACTIONS(5), }, - [107] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1175), - [sym_assignment_pattern] = STATE(1381), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1175), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1175), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [sym_pattern] = STATE(1298), - [sym_rest_pattern] = STATE(1138), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(659), - [anon_sym_export] = ACTIONS(661), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(661), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(671), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(100)] = { + [ts_builtin_sym_end] = ACTIONS(792), + [sym_identifier] = ACTIONS(794), + [anon_sym_export] = ACTIONS(794), + [anon_sym_STAR] = ACTIONS(796), + [anon_sym_default] = ACTIONS(794), + [anon_sym_LBRACE] = ACTIONS(792), + [anon_sym_COMMA] = ACTIONS(798), + [anon_sym_RBRACE] = ACTIONS(792), + [anon_sym_import] = ACTIONS(794), + [anon_sym_with] = ACTIONS(794), + [anon_sym_var] = ACTIONS(794), + [anon_sym_let] = ACTIONS(794), + [anon_sym_const] = ACTIONS(794), + [anon_sym_using] = ACTIONS(794), + [anon_sym_await] = ACTIONS(794), + [anon_sym_else] = ACTIONS(794), + [anon_sym_if] = ACTIONS(794), + [anon_sym_switch] = ACTIONS(794), + [anon_sym_for] = ACTIONS(794), + [anon_sym_LPAREN] = ACTIONS(792), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_in] = ACTIONS(796), + [anon_sym_while] = ACTIONS(794), + [anon_sym_do] = ACTIONS(794), + [anon_sym_try] = ACTIONS(794), + [anon_sym_break] = ACTIONS(794), + [anon_sym_continue] = ACTIONS(794), + [anon_sym_debugger] = ACTIONS(794), + [anon_sym_return] = ACTIONS(794), + [anon_sym_throw] = ACTIONS(794), + [anon_sym_case] = ACTIONS(794), + [anon_sym_yield] = ACTIONS(794), + [anon_sym_LBRACK] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(794), + [anon_sym_GT] = ACTIONS(796), + [anon_sym_DOT] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_class] = ACTIONS(794), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(794), + [sym_optional_chain] = ACTIONS(798), + [anon_sym_new] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(798), + [anon_sym_PIPE_PIPE] = ACTIONS(798), + [anon_sym_GT_GT] = ACTIONS(796), + [anon_sym_GT_GT_GT] = ACTIONS(798), + [anon_sym_LT_LT] = ACTIONS(798), + [anon_sym_AMP] = ACTIONS(796), + [anon_sym_CARET] = ACTIONS(798), + [anon_sym_PIPE] = ACTIONS(796), + [anon_sym_PLUS] = ACTIONS(794), + [anon_sym_DASH] = ACTIONS(794), + [anon_sym_SLASH] = ACTIONS(794), + [anon_sym_PERCENT] = ACTIONS(798), + [anon_sym_STAR_STAR] = ACTIONS(798), + [anon_sym_LT_EQ] = ACTIONS(798), + [anon_sym_EQ_EQ] = ACTIONS(796), + [anon_sym_EQ_EQ_EQ] = ACTIONS(798), + [anon_sym_BANG_EQ] = ACTIONS(796), + [anon_sym_BANG_EQ_EQ] = ACTIONS(798), + [anon_sym_GT_EQ] = ACTIONS(798), + [anon_sym_QMARK_QMARK] = ACTIONS(798), + [anon_sym_instanceof] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_TILDE] = ACTIONS(792), + [anon_sym_typeof] = ACTIONS(794), + [anon_sym_void] = ACTIONS(794), + [anon_sym_delete] = ACTIONS(794), + [anon_sym_PLUS_PLUS] = ACTIONS(792), + [anon_sym_DASH_DASH] = ACTIONS(792), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(661), - [anon_sym_get] = ACTIONS(661), - [anon_sym_set] = ACTIONS(661), + [anon_sym_BQUOTE] = ACTIONS(792), + [sym_number] = ACTIONS(792), + [sym_private_property_identifier] = ACTIONS(792), + [sym_this] = ACTIONS(794), + [sym_super] = ACTIONS(794), + [sym_true] = ACTIONS(794), + [sym_false] = ACTIONS(794), + [sym_null] = ACTIONS(794), + [sym_undefined] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(792), + [anon_sym_static] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [sym__automatic_semicolon] = ACTIONS(800), + [sym__ternary_qmark] = ACTIONS(798), [sym_html_comment] = ACTIONS(5), }, - [108] = { - [sym_import] = STATE(1272), - [sym_empty_statement] = STATE(121), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(783), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1621), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(101)] = { + [sym_declaration] = STATE(469), + [sym_import] = STATE(1326), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(914), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1343), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(802), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(806), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [109] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(746), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1568), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(718), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(102)] = { + [sym_declaration] = STATE(451), + [sym_import] = STATE(1326), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(889), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1322), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(802), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(569), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(573), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), - [sym__automatic_semicolon] = ACTIONS(718), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [110] = { - [sym_import] = STATE(1272), - [sym_empty_statement] = STATE(113), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(778), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1639), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(103)] = { + [sym_declaration] = STATE(451), + [sym_import] = STATE(1326), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(889), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1343), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(802), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(806), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [111] = { - [sym_import] = STATE(1272), - [sym_empty_statement] = STATE(120), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(803), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1638), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(104)] = { + [sym_declaration] = STATE(469), + [sym_import] = STATE(1326), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(914), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_class_declaration] = STATE(419), + [sym_function_expression] = STATE(740), + [sym_function_declaration] = STATE(419), + [sym_generator_function] = STATE(740), + [sym_generator_function_declaration] = STATE(419), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1322), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(802), + [anon_sym_const] = ACTIONS(25), + [anon_sym_using] = ACTIONS(27), + [anon_sym_await] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(569), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(573), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [112] = { - [sym_import] = STATE(1272), - [sym_empty_statement] = STATE(117), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(805), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1647), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(105)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(858), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1282), + [sym_assignment_pattern] = STATE(1413), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1282), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(557), + [sym_subscript_expression] = STATE(557), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1282), + [sym_spread_element] = STATE(1485), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [sym_pattern] = STATE(1382), + [sym_rest_pattern] = STATE(1280), + [aux_sym_export_statement_repeat1] = STATE(1388), + [aux_sym_array_repeat1] = STATE(1490), + [aux_sym_array_pattern_repeat1] = STATE(1409), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_COMMA] = ACTIONS(814), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(812), + [anon_sym_await] = ACTIONS(816), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_RBRACK] = ACTIONS(818), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [113] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(751), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1657), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(720), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(106)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(858), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1282), + [sym_assignment_pattern] = STATE(1413), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1282), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(557), + [sym_subscript_expression] = STATE(557), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1282), + [sym_spread_element] = STATE(1485), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [sym_pattern] = STATE(1382), + [sym_rest_pattern] = STATE(1280), + [aux_sym_export_statement_repeat1] = STATE(1388), + [aux_sym_array_repeat1] = STATE(1490), + [aux_sym_array_pattern_repeat1] = STATE(1409), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_COMMA] = ACTIONS(814), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(812), + [anon_sym_await] = ACTIONS(816), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_RBRACK] = ACTIONS(826), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [114] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(501), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1325), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1325), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(501), - [sym_subscript_expression] = STATE(501), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1325), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(722), - [anon_sym_export] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(645), - [anon_sym_import] = ACTIONS(357), - [anon_sym_var] = ACTIONS(726), - [anon_sym_let] = ACTIONS(728), - [anon_sym_const] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(653), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(732), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(107)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(872), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1282), + [sym_assignment_pattern] = STATE(1413), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1282), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(557), + [sym_subscript_expression] = STATE(557), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1282), + [sym_spread_element] = STATE(1460), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [sym_pattern] = STATE(1382), + [sym_rest_pattern] = STATE(1280), + [aux_sym_export_statement_repeat1] = STATE(1388), + [aux_sym_array_repeat1] = STATE(1450), + [aux_sym_array_pattern_repeat1] = STATE(1409), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_COMMA] = ACTIONS(814), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(812), + [anon_sym_await] = ACTIONS(816), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_RBRACK] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(734), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(724), - [anon_sym_get] = ACTIONS(724), - [anon_sym_set] = ACTIONS(724), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [115] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(788), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1669), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(736), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(108)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(858), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1282), + [sym_assignment_pattern] = STATE(1413), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1282), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(557), + [sym_subscript_expression] = STATE(557), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1282), + [sym_spread_element] = STATE(1485), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [sym_pattern] = STATE(1382), + [sym_rest_pattern] = STATE(1280), + [aux_sym_export_statement_repeat1] = STATE(1388), + [aux_sym_array_repeat1] = STATE(1490), + [aux_sym_array_pattern_repeat1] = STATE(1409), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_COMMA] = ACTIONS(814), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(812), + [anon_sym_await] = ACTIONS(816), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_RBRACK] = ACTIONS(830), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [116] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(811), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1652), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(738), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(109)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(858), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1282), + [sym_assignment_pattern] = STATE(1413), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1282), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(557), + [sym_subscript_expression] = STATE(557), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1282), + [sym_spread_element] = STATE(1485), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [sym_pattern] = STATE(1382), + [sym_rest_pattern] = STATE(1280), + [aux_sym_export_statement_repeat1] = STATE(1388), + [aux_sym_array_repeat1] = STATE(1490), + [aux_sym_array_pattern_repeat1] = STATE(1409), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_COMMA] = ACTIONS(814), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(812), + [anon_sym_await] = ACTIONS(816), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_RBRACK] = ACTIONS(832), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [117] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(789), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1673), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(740), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(110)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(858), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1282), + [sym_assignment_pattern] = STATE(1413), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1282), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(557), + [sym_subscript_expression] = STATE(557), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1282), + [sym_spread_element] = STATE(1485), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [sym_pattern] = STATE(1382), + [sym_rest_pattern] = STATE(1280), + [aux_sym_export_statement_repeat1] = STATE(1388), + [aux_sym_array_repeat1] = STATE(1490), + [aux_sym_array_pattern_repeat1] = STATE(1409), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_COMMA] = ACTIONS(814), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(812), + [anon_sym_await] = ACTIONS(816), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_RBRACK] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [118] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(807), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1658), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(742), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(111)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(841), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1282), + [sym_assignment_pattern] = STATE(1413), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1282), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(557), + [sym_subscript_expression] = STATE(557), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1282), + [sym_spread_element] = STATE(1460), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [sym_pattern] = STATE(1382), + [sym_rest_pattern] = STATE(1280), + [aux_sym_export_statement_repeat1] = STATE(1388), + [aux_sym_array_repeat1] = STATE(1450), + [aux_sym_array_pattern_repeat1] = STATE(1409), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_COMMA] = ACTIONS(814), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(812), + [anon_sym_await] = ACTIONS(816), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_RBRACK] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [119] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(791), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1678), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(744), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(112)] = { + [sym_import] = STATE(1333), + [sym_variable_declaration] = STATE(141), + [sym_lexical_declaration] = STATE(141), + [sym_empty_statement] = STATE(141), + [sym_parenthesized_expression] = STATE(564), + [sym_expression] = STATE(842), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1481), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1481), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(564), + [sym_subscript_expression] = STATE(564), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1481), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1847), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(836), + [anon_sym_export] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_import] = ACTIONS(375), + [anon_sym_var] = ACTIONS(842), + [anon_sym_let] = ACTIONS(844), + [anon_sym_const] = ACTIONS(846), + [anon_sym_using] = ACTIONS(848), + [anon_sym_await] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(854), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(856), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), [sym_html_comment] = ACTIONS(5), }, - [120] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(784), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1651), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(746), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(113)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(880), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__initializer] = STATE(1408), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1854), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_COMMA] = ACTIONS(858), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_of] = ACTIONS(860), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_in] = ACTIONS(860), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_EQ] = ACTIONS(862), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), + [sym__automatic_semicolon] = ACTIONS(864), [sym_html_comment] = ACTIONS(5), }, - [121] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(777), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1645), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_RPAREN] = ACTIONS(748), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(114)] = { + [sym_import] = STATE(1333), + [sym_variable_declaration] = STATE(143), + [sym_lexical_declaration] = STATE(143), + [sym_empty_statement] = STATE(143), + [sym_parenthesized_expression] = STATE(564), + [sym_expression] = STATE(864), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1481), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1481), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(564), + [sym_subscript_expression] = STATE(564), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1481), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1868), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(836), + [anon_sym_export] = ACTIONS(838), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_import] = ACTIONS(375), + [anon_sym_var] = ACTIONS(842), + [anon_sym_let] = ACTIONS(844), + [anon_sym_const] = ACTIONS(846), + [anon_sym_using] = ACTIONS(848), + [anon_sym_await] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(854), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(856), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), [sym_html_comment] = ACTIONS(5), }, - [122] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(630), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(714), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(115)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(979), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1307), + [sym_assignment_pattern] = STATE(1413), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1307), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1307), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [sym_pattern] = STATE(1382), + [sym_rest_pattern] = STATE(1280), + [aux_sym_export_statement_repeat1] = STATE(1388), + [aux_sym_array_pattern_repeat1] = STATE(1409), + [sym_identifier] = ACTIONS(867), + [anon_sym_export] = ACTIONS(869), + [anon_sym_LBRACE] = ACTIONS(871), + [anon_sym_COMMA] = ACTIONS(873), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(869), + [anon_sym_await] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_RBRACK] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(881), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(883), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(885), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(869), + [anon_sym_get] = ACTIONS(869), + [anon_sym_set] = ACTIONS(869), [sym_html_comment] = ACTIONS(5), }, - [123] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(532), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(782), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(116)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(975), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1282), + [sym_assignment_pattern] = STATE(1413), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1282), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(572), + [sym_subscript_expression] = STATE(572), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1282), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [sym_pattern] = STATE(1382), + [sym_rest_pattern] = STATE(1280), + [aux_sym_export_statement_repeat1] = STATE(1388), + [aux_sym_array_pattern_repeat1] = STATE(1409), + [sym_identifier] = ACTIONS(887), + [anon_sym_export] = ACTIONS(889), + [anon_sym_LBRACE] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(873), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(889), + [anon_sym_await] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_RBRACK] = ACTIONS(879), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(897), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(883), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(899), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(889), + [anon_sym_get] = ACTIONS(889), + [anon_sym_set] = ACTIONS(889), [sym_html_comment] = ACTIONS(5), }, - [124] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(543), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(787), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(117)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(845), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1282), + [sym_assignment_pattern] = STATE(1699), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1282), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(557), + [sym_subscript_expression] = STATE(557), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1282), + [sym_spread_element] = STATE(1488), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [sym_pattern] = STATE(1410), + [sym_rest_pattern] = STATE(1280), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_COMMA] = ACTIONS(901), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(812), + [anon_sym_await] = ACTIONS(816), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_RBRACK] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [125] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(548), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(810), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(118)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(979), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1307), + [sym_assignment_pattern] = STATE(1484), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1307), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1307), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [sym_pattern] = STATE(1347), + [sym_rest_pattern] = STATE(1280), + [aux_sym_export_statement_repeat1] = STATE(1388), + [aux_sym_array_pattern_repeat1] = STATE(1491), + [sym_identifier] = ACTIONS(867), + [anon_sym_export] = ACTIONS(869), + [anon_sym_LBRACE] = ACTIONS(871), + [anon_sym_COMMA] = ACTIONS(873), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(869), + [anon_sym_await] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_RBRACK] = ACTIONS(904), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(881), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(883), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(885), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(869), + [anon_sym_get] = ACTIONS(869), + [anon_sym_set] = ACTIONS(869), [sym_html_comment] = ACTIONS(5), }, - [126] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(558), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(814), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(119)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(875), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1282), + [sym_assignment_pattern] = STATE(1426), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1282), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(557), + [sym_subscript_expression] = STATE(557), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1282), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1817), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [sym_pattern] = STATE(1370), + [sym_rest_pattern] = STATE(1280), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(812), + [anon_sym_await] = ACTIONS(816), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(906), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(883), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [127] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(560), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(786), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(120)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(866), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1282), + [sym_assignment_pattern] = STATE(1426), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1282), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(557), + [sym_subscript_expression] = STATE(557), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1282), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1804), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [sym_pattern] = STATE(1370), + [sym_rest_pattern] = STATE(1280), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(812), + [anon_sym_await] = ACTIONS(816), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(906), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(883), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [128] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(561), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(764), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(121)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(979), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1307), + [sym_assignment_pattern] = STATE(1699), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1307), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1307), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [sym_pattern] = STATE(1410), + [sym_rest_pattern] = STATE(1280), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(867), + [anon_sym_export] = ACTIONS(869), + [anon_sym_LBRACE] = ACTIONS(871), + [anon_sym_COMMA] = ACTIONS(908), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(869), + [anon_sym_await] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_RBRACK] = ACTIONS(908), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(881), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(883), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(885), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(869), + [anon_sym_get] = ACTIONS(869), + [anon_sym_set] = ACTIONS(869), [sym_html_comment] = ACTIONS(5), }, - [129] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(561), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(603), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(754), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(122)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(867), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_spread_element] = STATE(1405), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [aux_sym_array_repeat1] = STATE(1445), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_COMMA] = ACTIONS(910), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(912), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [130] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(763), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1664), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(123)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(847), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_spread_element] = STATE(1480), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [aux_sym_array_repeat1] = STATE(1432), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_COMMA] = ACTIONS(910), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [131] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(124)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(979), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1307), + [sym_assignment_pattern] = STATE(1661), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1307), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1307), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [sym_pattern] = STATE(1474), + [sym_rest_pattern] = STATE(1280), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(867), + [anon_sym_export] = ACTIONS(869), + [anon_sym_LBRACE] = ACTIONS(871), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(869), + [anon_sym_await] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(918), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(881), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(883), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(885), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(869), + [anon_sym_get] = ACTIONS(869), + [anon_sym_set] = ACTIONS(869), [sym_html_comment] = ACTIONS(5), }, - [132] = { - [sym_namespace_export] = STATE(1424), - [sym_export_clause] = STATE(1271), - [sym_declaration] = STATE(397), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_class_declaration] = STATE(412), - [sym_function_declaration] = STATE(412), - [sym_generator_function_declaration] = STATE(412), - [sym_decorator] = STATE(1006), - [aux_sym_export_statement_repeat1] = STATE(1220), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [anon_sym_STAR] = ACTIONS(758), - [anon_sym_default] = ACTIONS(760), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(766), - [anon_sym_var] = ACTIONS(768), - [anon_sym_let] = ACTIONS(770), - [anon_sym_const] = ACTIONS(770), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_class] = ACTIONS(782), - [anon_sym_async] = ACTIONS(784), - [anon_sym_function] = ACTIONS(786), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(125)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(859), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_spread_element] = STATE(1437), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [aux_sym_array_repeat1] = STATE(1438), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_COMMA] = ACTIONS(910), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_AT] = ACTIONS(91), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [133] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(813), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1656), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(126)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(979), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1307), + [sym_assignment_pattern] = STATE(1426), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1307), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1307), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [sym_pattern] = STATE(1370), + [sym_rest_pattern] = STATE(1280), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(867), + [anon_sym_export] = ACTIONS(869), + [anon_sym_LBRACE] = ACTIONS(871), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(869), + [anon_sym_await] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(906), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(881), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(883), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(885), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(869), + [anon_sym_get] = ACTIONS(869), + [anon_sym_set] = ACTIONS(869), [sym_html_comment] = ACTIONS(5), }, - [134] = { - [sym_namespace_export] = STATE(1424), - [sym_export_clause] = STATE(1271), - [sym_declaration] = STATE(397), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_class_declaration] = STATE(412), - [sym_function_declaration] = STATE(412), - [sym_generator_function_declaration] = STATE(412), - [sym_decorator] = STATE(1006), - [aux_sym_export_statement_repeat1] = STATE(1220), - [aux_sym_object_repeat1] = STATE(1310), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [anon_sym_STAR] = ACTIONS(758), - [anon_sym_default] = ACTIONS(760), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(792), - [anon_sym_var] = ACTIONS(768), - [anon_sym_let] = ACTIONS(770), - [anon_sym_const] = ACTIONS(770), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_class] = ACTIONS(782), - [anon_sym_async] = ACTIONS(784), - [anon_sym_function] = ACTIONS(786), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(127)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(845), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_spread_element] = STATE(1488), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_COMMA] = ACTIONS(922), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(922), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_RBRACK] = ACTIONS(922), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_AT] = ACTIONS(91), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [135] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(752), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1625), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(128)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(979), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1307), + [sym_assignment_pattern] = STATE(1661), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1307), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1307), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [sym_pattern] = STATE(1474), + [sym_rest_pattern] = STATE(1280), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(867), + [anon_sym_export] = ACTIONS(869), + [anon_sym_LBRACE] = ACTIONS(871), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(869), + [anon_sym_await] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(924), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(881), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(883), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(885), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(869), + [anon_sym_get] = ACTIONS(869), + [anon_sym_set] = ACTIONS(869), [sym_html_comment] = ACTIONS(5), }, - [136] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(794), - [anon_sym_export] = ACTIONS(796), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(796), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(798), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(129)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(850), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_spread_element] = STATE(1845), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1845), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_RBRACE] = ACTIONS(926), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(796), - [anon_sym_get] = ACTIONS(796), - [anon_sym_set] = ACTIONS(796), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [137] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(772), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1627), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(130)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(979), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1307), + [sym_assignment_pattern] = STATE(1722), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1307), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1307), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [sym_pattern] = STATE(1434), + [sym_rest_pattern] = STATE(1280), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(867), + [anon_sym_export] = ACTIONS(869), + [anon_sym_LBRACE] = ACTIONS(871), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(869), + [anon_sym_await] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(881), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(883), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(885), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(869), + [anon_sym_get] = ACTIONS(869), + [anon_sym_set] = ACTIONS(869), [sym_html_comment] = ACTIONS(5), }, - [138] = { - [sym_namespace_export] = STATE(1424), - [sym_export_clause] = STATE(1271), - [sym_declaration] = STATE(397), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_class_declaration] = STATE(412), - [sym_function_declaration] = STATE(412), - [sym_generator_function_declaration] = STATE(412), - [sym_decorator] = STATE(1006), - [aux_sym_export_statement_repeat1] = STATE(1220), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [anon_sym_STAR] = ACTIONS(758), - [anon_sym_default] = ACTIONS(760), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(800), - [anon_sym_var] = ACTIONS(768), - [anon_sym_let] = ACTIONS(770), - [anon_sym_const] = ACTIONS(770), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_class] = ACTIONS(782), - [anon_sym_async] = ACTIONS(784), - [anon_sym_function] = ACTIONS(786), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(131)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(861), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_spread_element] = STATE(1765), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1765), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_RBRACE] = ACTIONS(928), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(914), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_AT] = ACTIONS(91), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [139] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(780), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1642), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(132)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(941), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1282), + [sym_assignment_pattern] = STATE(1722), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1282), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(557), + [sym_subscript_expression] = STATE(557), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1282), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [sym_pattern] = STATE(1434), + [sym_rest_pattern] = STATE(1280), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(812), + [anon_sym_await] = ACTIONS(816), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(822), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(883), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), [sym_html_comment] = ACTIONS(5), }, - [140] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(760), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1660), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(133)] = { + [sym_namespace_export] = STATE(1692), + [sym_export_clause] = STATE(1358), + [sym_declaration] = STATE(433), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_class_declaration] = STATE(419), + [sym_function_declaration] = STATE(419), + [sym_generator_function_declaration] = STATE(419), + [sym_decorator] = STATE(1097), + [aux_sym_export_statement_repeat1] = STATE(1327), + [aux_sym_object_repeat1] = STATE(1418), + [aux_sym_object_pattern_repeat1] = STATE(1452), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_default] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_RBRACE] = ACTIONS(351), + [anon_sym_var] = ACTIONS(936), + [anon_sym_let] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_using] = ACTIONS(940), + [anon_sym_await] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(169), + [anon_sym_class] = ACTIONS(947), + [anon_sym_async] = ACTIONS(949), + [anon_sym_function] = ACTIONS(951), + [anon_sym_EQ_GT] = ACTIONS(200), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(169), + [anon_sym_AT] = ACTIONS(93), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, - [141] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(747), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_sequence_expression] = STATE(1570), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(134)] = { + [sym_namespace_export] = STATE(1692), + [sym_export_clause] = STATE(1358), + [sym_declaration] = STATE(433), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_class_declaration] = STATE(419), + [sym_function_declaration] = STATE(419), + [sym_generator_function_declaration] = STATE(419), + [sym_decorator] = STATE(1097), + [aux_sym_export_statement_repeat1] = STATE(1327), + [aux_sym_object_repeat1] = STATE(1487), + [aux_sym_object_pattern_repeat1] = STATE(1452), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_default] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_RBRACE] = ACTIONS(171), + [anon_sym_var] = ACTIONS(936), + [anon_sym_let] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_using] = ACTIONS(940), + [anon_sym_await] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(169), + [anon_sym_class] = ACTIONS(947), + [anon_sym_async] = ACTIONS(949), + [anon_sym_function] = ACTIONS(951), + [anon_sym_EQ_GT] = ACTIONS(200), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(169), + [anon_sym_AT] = ACTIONS(93), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, - [142] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(729), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(730), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(135)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(979), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1307), + [sym_assignment_pattern] = STATE(1661), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1307), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(558), + [sym_subscript_expression] = STATE(558), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1307), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [sym_pattern] = STATE(1474), + [sym_rest_pattern] = STATE(1280), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(867), + [anon_sym_export] = ACTIONS(869), + [anon_sym_LBRACE] = ACTIONS(871), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(869), + [anon_sym_await] = ACTIONS(875), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(881), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(883), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(885), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(869), + [anon_sym_get] = ACTIONS(869), + [anon_sym_set] = ACTIONS(869), [sym_html_comment] = ACTIONS(5), }, - [143] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(461), - [sym_expression] = STATE(868), - [sym_primary_expression] = STATE(579), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(584), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(461), - [sym_subscript_expression] = STATE(461), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(802), - [anon_sym_export] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(804), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(136)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(880), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1854), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_of] = ACTIONS(860), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_in] = ACTIONS(860), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(810), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(804), - [anon_sym_get] = ACTIONS(804), - [anon_sym_set] = ACTIONS(804), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), + [sym__automatic_semicolon] = ACTIONS(953), [sym_html_comment] = ACTIONS(5), }, - [144] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(625), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(733), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(137)] = { + [sym_namespace_export] = STATE(1692), + [sym_export_clause] = STATE(1358), + [sym_declaration] = STATE(433), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_class_declaration] = STATE(419), + [sym_function_declaration] = STATE(419), + [sym_generator_function_declaration] = STATE(419), + [sym_decorator] = STATE(1097), + [aux_sym_export_statement_repeat1] = STATE(1327), + [aux_sym_object_repeat1] = STATE(1418), + [aux_sym_object_pattern_repeat1] = STATE(1452), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_default] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_RBRACE] = ACTIONS(216), + [anon_sym_var] = ACTIONS(936), + [anon_sym_let] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_using] = ACTIONS(940), + [anon_sym_await] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(169), + [anon_sym_class] = ACTIONS(947), + [anon_sym_async] = ACTIONS(949), + [anon_sym_function] = ACTIONS(951), + [anon_sym_EQ_GT] = ACTIONS(200), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(169), + [anon_sym_AT] = ACTIONS(93), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, - [145] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(622), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(623), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(138)] = { + [sym_import] = STATE(1333), + [sym_empty_statement] = STATE(151), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(885), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1852), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [146] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(560), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(589), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(754), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(139)] = { + [sym_import] = STATE(1333), + [sym_empty_statement] = STATE(150), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(883), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1835), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [147] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(628), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(629), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(140)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(580), + [sym_expression] = STATE(979), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1472), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1472), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(580), + [sym_subscript_expression] = STATE(580), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1472), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(955), + [anon_sym_export] = ACTIONS(957), + [anon_sym_LBRACE] = ACTIONS(840), + [anon_sym_import] = ACTIONS(375), + [anon_sym_var] = ACTIONS(959), + [anon_sym_let] = ACTIONS(961), + [anon_sym_const] = ACTIONS(848), + [anon_sym_using] = ACTIONS(848), + [anon_sym_await] = ACTIONS(963), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(965), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(967), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(957), + [anon_sym_get] = ACTIONS(957), + [anon_sym_set] = ACTIONS(957), [sym_html_comment] = ACTIONS(5), }, - [148] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(756), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1681), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(141)] = { + [sym_import] = STATE(1333), + [sym_empty_statement] = STATE(144), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(863), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1789), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [149] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(685), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(694), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(142)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(822), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1695), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(969), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), + [sym__automatic_semicolon] = ACTIONS(969), [sym_html_comment] = ACTIONS(5), }, - [150] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(770), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1672), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(143)] = { + [sym_import] = STATE(1333), + [sym_empty_statement] = STATE(147), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(884), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1843), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [151] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(729), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(709), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(144)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(882), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1831), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(971), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [152] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(622), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(712), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(145)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(840), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1795), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(973), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [153] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(628), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(713), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(146)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(876), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1812), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(975), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [154] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(774), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1615), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(147)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(874), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1838), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(977), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [155] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(773), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1694), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(148)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(878), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1764), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(979), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [156] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(630), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(631), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(149)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(831), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1760), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(981), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [157] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(768), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1695), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(150)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(832), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1748), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(983), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [158] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(765), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1650), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(151)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(877), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1750), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_RPAREN] = ACTIONS(985), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [159] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(532), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(582), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(754), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(152)] = { + [sym_import] = STATE(1333), + [sym_statement_block] = STATE(628), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(666), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [160] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(543), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(585), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(754), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(153)] = { + [sym_import] = STATE(1333), + [sym_statement_block] = STATE(628), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(910), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1776), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1776), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1776), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1778), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(989), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(615), + [anon_sym_await] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(626), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_typeof] = ACTIONS(635), + [anon_sym_void] = ACTIONS(635), + [anon_sym_delete] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(642), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), [sym_html_comment] = ACTIONS(5), }, - [161] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(548), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(578), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(754), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(154)] = { + [sym_import] = STATE(1333), + [sym_statement_block] = STATE(629), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(911), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1776), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1776), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1776), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1778), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(989), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(615), + [anon_sym_await] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(626), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_typeof] = ACTIONS(635), + [anon_sym_void] = ACTIONS(635), + [anon_sym_delete] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(642), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), [sym_html_comment] = ACTIONS(5), }, - [162] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(461), - [sym_expression] = STATE(868), - [sym_primary_expression] = STATE(579), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(584), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(461), - [sym_subscript_expression] = STATE(461), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(812), - [anon_sym_export] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(814), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(816), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(155)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(880), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1854), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(810), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(814), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [163] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(809), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1687), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(156)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(836), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1837), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [164] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(685), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(686), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(157)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(979), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(583), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), [sym_html_comment] = ACTIONS(5), }, - [165] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(775), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1668), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(158)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(886), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1773), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [166] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(532), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(835), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(159)] = { + [sym_import] = STATE(1326), + [sym_statement_block] = STATE(737), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(729), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [167] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(543), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(838), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(160)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(881), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1807), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [168] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(548), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(851), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(161)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(873), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [169] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(558), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(852), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(162)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(837), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1842), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [170] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(560), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(853), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(163)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(838), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1757), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [171] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(561), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(854), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(164)] = { + [sym_import] = STATE(1333), + [sym_statement_block] = STATE(630), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [172] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(503), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(818), - [anon_sym_export] = ACTIONS(820), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DOT] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(822), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(165)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(979), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(583), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1778), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(995), + [anon_sym_export] = ACTIONS(997), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(997), + [anon_sym_await] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(1001), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(997), + [anon_sym_get] = ACTIONS(997), + [anon_sym_set] = ACTIONS(997), [sym_html_comment] = ACTIONS(5), }, - [173] = { - [sym_import] = STATE(1272), - [sym_statement_block] = STATE(558), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(587), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(754), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(166)] = { + [sym_namespace_export] = STATE(1692), + [sym_export_clause] = STATE(1358), + [sym_declaration] = STATE(433), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_class_declaration] = STATE(419), + [sym_function_declaration] = STATE(419), + [sym_generator_function_declaration] = STATE(419), + [sym_decorator] = STATE(1097), + [aux_sym_export_statement_repeat1] = STATE(1327), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_default] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_var] = ACTIONS(936), + [anon_sym_let] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_using] = ACTIONS(940), + [anon_sym_await] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(169), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(494), + [anon_sym_EQ] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(169), + [anon_sym_class] = ACTIONS(947), + [anon_sym_async] = ACTIONS(949), + [anon_sym_function] = ACTIONS(951), + [anon_sym_EQ_GT] = ACTIONS(200), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(169), + [anon_sym_AT] = ACTIONS(93), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, - [174] = { - [sym_import] = STATE(1232), - [sym_statement_block] = STATE(625), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(690), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(750), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(167)] = { + [sym_import] = STATE(1326), + [sym_statement_block] = STATE(801), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(803), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [175] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(673), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(168)] = { + [sym_import] = STATE(1333), + [sym_statement_block] = STATE(600), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(661), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [176] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(862), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(169)] = { + [sym_import] = STATE(1333), + [sym_statement_block] = STATE(613), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [177] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(858), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(170)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(839), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1761), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [178] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(666), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(171)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(833), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1850), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [179] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(172)] = { + [sym_namespace_export] = STATE(1692), + [sym_export_clause] = STATE(1358), + [sym_declaration] = STATE(433), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_using_declaration] = STATE(419), + [sym_class_declaration] = STATE(419), + [sym_function_declaration] = STATE(419), + [sym_generator_function_declaration] = STATE(419), + [sym_decorator] = STATE(1097), + [aux_sym_export_statement_repeat1] = STATE(1327), + [anon_sym_STAR] = ACTIONS(930), + [anon_sym_default] = ACTIONS(1003), + [anon_sym_LBRACE] = ACTIONS(934), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_var] = ACTIONS(936), + [anon_sym_let] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_using] = ACTIONS(940), + [anon_sym_await] = ACTIONS(942), + [anon_sym_LPAREN] = ACTIONS(169), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(488), + [anon_sym_EQ] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(169), + [anon_sym_class] = ACTIONS(947), + [anon_sym_async] = ACTIONS(949), + [anon_sym_function] = ACTIONS(951), + [anon_sym_EQ_GT] = ACTIONS(200), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(169), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(169), + [anon_sym_AT] = ACTIONS(93), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, - [180] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(821), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(173)] = { + [sym_import] = STATE(1326), + [sym_statement_block] = STATE(720), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(725), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [181] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(611), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(174)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(818), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_sequence_expression] = STATE(1505), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [182] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(684), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(175)] = { + [sym_import] = STATE(1333), + [sym_statement_block] = STATE(626), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(664), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [183] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(687), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(176)] = { + [sym_import] = STATE(1326), + [sym_statement_block] = STATE(737), + [sym_parenthesized_expression] = STATE(560), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1802), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1802), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(560), + [sym_subscript_expression] = STATE(560), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1143), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1802), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1803), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(530), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_typeof] = ACTIONS(540), + [anon_sym_void] = ACTIONS(540), + [anon_sym_delete] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(672), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(547), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [184] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(859), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(177)] = { + [sym_import] = STATE(1326), + [sym_statement_block] = STATE(794), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(806), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [185] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(691), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(178)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(869), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1811), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [186] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(758), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(179)] = { + [sym_import] = STATE(1333), + [sym_statement_block] = STATE(629), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(668), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [187] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(697), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(180)] = { + [sym_import] = STATE(1326), + [sym_statement_block] = STATE(720), + [sym_parenthesized_expression] = STATE(560), + [sym_expression] = STATE(703), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1802), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1802), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(560), + [sym_subscript_expression] = STATE(560), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1143), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1802), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1803), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(530), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_typeof] = ACTIONS(540), + [anon_sym_void] = ACTIONS(540), + [anon_sym_delete] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(672), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(547), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [188] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(710), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(181)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(860), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1858), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [189] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(711), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(182)] = { + [sym_import] = STATE(1326), + [sym_statement_block] = STATE(801), + [sym_parenthesized_expression] = STATE(560), + [sym_expression] = STATE(718), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1802), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1802), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(560), + [sym_subscript_expression] = STATE(560), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1143), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1802), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1803), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(530), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_typeof] = ACTIONS(540), + [anon_sym_void] = ACTIONS(540), + [anon_sym_delete] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(672), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(547), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [190] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(715), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(183)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(834), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1844), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [191] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(716), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(184)] = { + [sym_import] = STATE(1326), + [sym_statement_block] = STATE(759), + [sym_parenthesized_expression] = STATE(560), + [sym_expression] = STATE(721), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1802), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1802), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(560), + [sym_subscript_expression] = STATE(560), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1143), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1802), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1803), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(530), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_typeof] = ACTIONS(540), + [anon_sym_void] = ACTIONS(540), + [anon_sym_delete] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(672), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(547), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [192] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(717), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(185)] = { + [sym_import] = STATE(1326), + [sym_statement_block] = STATE(794), + [sym_parenthesized_expression] = STATE(560), + [sym_expression] = STATE(722), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1802), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1802), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(560), + [sym_subscript_expression] = STATE(560), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1143), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1802), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1803), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(530), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_typeof] = ACTIONS(540), + [anon_sym_void] = ACTIONS(540), + [anon_sym_delete] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(672), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(547), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [193] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(719), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(186)] = { + [sym_import] = STATE(1326), + [sym_statement_block] = STATE(742), + [sym_parenthesized_expression] = STATE(560), + [sym_expression] = STATE(723), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1802), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1802), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(560), + [sym_subscript_expression] = STATE(560), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1143), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1802), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1803), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(530), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_typeof] = ACTIONS(540), + [anon_sym_void] = ACTIONS(540), + [anon_sym_delete] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(672), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(547), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [194] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(720), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(187)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(862), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1841), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [195] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(721), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(188)] = { + [sym_import] = STATE(1326), + [sym_statement_block] = STATE(742), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(811), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [196] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(722), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(189)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(849), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1867), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [197] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(737), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1219), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1219), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(493), - [sym_subscript_expression] = STATE(493), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1219), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(824), - [anon_sym_export] = ACTIONS(826), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(826), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(828), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(190)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(835), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1864), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(830), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(826), - [anon_sym_get] = ACTIONS(826), - [anon_sym_set] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [198] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(728), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(191)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(879), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1839), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [199] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(510), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(192)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(528), + [sym_expression] = STATE(980), + [sym_primary_expression] = STATE(657), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(681), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(528), + [sym_subscript_expression] = STATE(528), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(1005), + [anon_sym_export] = ACTIONS(1007), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(1007), + [anon_sym_await] = ACTIONS(1009), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(1013), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1015), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1007), + [anon_sym_get] = ACTIONS(1007), + [anon_sym_set] = ACTIONS(1007), [sym_html_comment] = ACTIONS(5), }, - [200] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(507), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(193)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(830), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1806), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [201] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(580), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(194)] = { + [sym_import] = STATE(1333), + [sym_statement_block] = STATE(630), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(920), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(989), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), [sym_html_comment] = ACTIONS(5), }, - [202] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(575), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(195)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(857), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1826), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [203] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(583), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(196)] = { + [sym_import] = STATE(1333), + [sym_statement_block] = STATE(600), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(967), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(989), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), [sym_html_comment] = ACTIONS(5), }, - [204] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(586), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(197)] = { + [sym_import] = STATE(1333), + [sym_statement_block] = STATE(613), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(936), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(989), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), [sym_html_comment] = ACTIONS(5), }, - [205] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(588), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(198)] = { + [sym_import] = STATE(1333), + [sym_statement_block] = STATE(626), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(937), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(989), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), [sym_html_comment] = ACTIONS(5), }, - [206] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(607), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(199)] = { + [sym_import] = STATE(1333), + [sym_statement_block] = STATE(628), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(938), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(989), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), [sym_html_comment] = ACTIONS(5), }, - [207] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(590), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(200)] = { + [sym_import] = STATE(1333), + [sym_statement_block] = STATE(629), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(939), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(989), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), [sym_html_comment] = ACTIONS(5), }, - [208] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(591), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(201)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(843), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1863), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [209] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(592), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(202)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(844), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1774), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [210] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(574), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(203)] = { + [sym_import] = STATE(1333), + [sym_statement_block] = STATE(630), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(943), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1857), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1857), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1141), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1857), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1779), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(582), + [anon_sym_export] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(989), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_typeof] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(680), + [anon_sym_DASH_DASH] = ACTIONS(680), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(609), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(584), + [anon_sym_get] = ACTIONS(584), + [anon_sym_set] = ACTIONS(584), [sym_html_comment] = ACTIONS(5), }, - [211] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(593), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(204)] = { + [sym_import] = STATE(1333), + [sym_statement_block] = STATE(600), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(946), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1857), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1857), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1141), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1857), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1779), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(582), + [anon_sym_export] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(989), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_typeof] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(680), + [anon_sym_DASH_DASH] = ACTIONS(680), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(609), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(584), + [anon_sym_get] = ACTIONS(584), + [anon_sym_set] = ACTIONS(584), [sym_html_comment] = ACTIONS(5), }, - [212] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(594), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(205)] = { + [sym_import] = STATE(1333), + [sym_statement_block] = STATE(613), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(960), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1857), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1857), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1141), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1857), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1779), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(582), + [anon_sym_export] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(989), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_typeof] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(680), + [anon_sym_DASH_DASH] = ACTIONS(680), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(609), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(584), + [anon_sym_get] = ACTIONS(584), + [anon_sym_set] = ACTIONS(584), [sym_html_comment] = ACTIONS(5), }, - [213] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(595), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(206)] = { + [sym_import] = STATE(1333), + [sym_statement_block] = STATE(626), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(961), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1857), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1857), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1141), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1857), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1779), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(582), + [anon_sym_export] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(989), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_typeof] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(680), + [anon_sym_DASH_DASH] = ACTIONS(680), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(609), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(584), + [anon_sym_get] = ACTIONS(584), + [anon_sym_set] = ACTIONS(584), [sym_html_comment] = ACTIONS(5), }, - [214] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(598), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(207)] = { + [sym_import] = STATE(1333), + [sym_statement_block] = STATE(628), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(962), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1857), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1857), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1141), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1857), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1779), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(582), + [anon_sym_export] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(989), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_typeof] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(680), + [anon_sym_DASH_DASH] = ACTIONS(680), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(609), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(584), + [anon_sym_get] = ACTIONS(584), + [anon_sym_set] = ACTIONS(584), [sym_html_comment] = ACTIONS(5), }, - [215] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(600), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(208)] = { + [sym_import] = STATE(1333), + [sym_statement_block] = STATE(629), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(963), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1857), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1857), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1141), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1857), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1779), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(582), + [anon_sym_export] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(989), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_typeof] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(680), + [anon_sym_DASH_DASH] = ACTIONS(680), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(609), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(584), + [anon_sym_get] = ACTIONS(584), + [anon_sym_set] = ACTIONS(584), [sym_html_comment] = ACTIONS(5), }, - [216] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(602), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(209)] = { + [sym_import] = STATE(1333), + [sym_statement_block] = STATE(630), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(891), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1776), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1776), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1776), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1778), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(989), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(615), + [anon_sym_await] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(626), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_typeof] = ACTIONS(635), + [anon_sym_void] = ACTIONS(635), + [anon_sym_delete] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(642), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), [sym_html_comment] = ACTIONS(5), }, - [217] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(576), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(210)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(979), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(583), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(1017), + [anon_sym_export] = ACTIONS(1019), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(1019), + [anon_sym_await] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1019), + [anon_sym_get] = ACTIONS(1019), + [anon_sym_set] = ACTIONS(1019), [sym_html_comment] = ACTIONS(5), }, - [218] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(748), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(211)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(846), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1753), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [219] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(863), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(212)] = { + [sym_import] = STATE(1333), + [sym_statement_block] = STATE(600), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(894), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1776), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1776), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1776), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1778), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(989), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(615), + [anon_sym_await] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(626), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_typeof] = ACTIONS(635), + [anon_sym_void] = ACTIONS(635), + [anon_sym_delete] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(642), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), [sym_html_comment] = ACTIONS(5), }, - [220] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(865), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(213)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(528), + [sym_expression] = STATE(980), + [sym_primary_expression] = STATE(657), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(681), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(528), + [sym_subscript_expression] = STATE(528), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1803), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(1025), + [anon_sym_export] = ACTIONS(1027), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(1027), + [anon_sym_await] = ACTIONS(1029), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(1011), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(1031), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1015), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1027), + [anon_sym_get] = ACTIONS(1027), + [anon_sym_set] = ACTIONS(1027), [sym_html_comment] = ACTIONS(5), }, - [221] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(596), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(214)] = { + [sym_import] = STATE(1333), + [sym_statement_block] = STATE(613), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(908), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1776), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1776), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1776), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1778), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(989), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(615), + [anon_sym_await] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(626), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_typeof] = ACTIONS(635), + [anon_sym_void] = ACTIONS(635), + [anon_sym_delete] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(642), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), [sym_html_comment] = ACTIONS(5), }, - [222] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(513), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(215)] = { + [sym_import] = STATE(1333), + [sym_statement_block] = STATE(626), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(909), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1776), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1776), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1776), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1778), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(989), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(615), + [anon_sym_await] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(626), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_typeof] = ACTIONS(635), + [anon_sym_void] = ACTIONS(635), + [anon_sym_delete] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(642), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), [sym_html_comment] = ACTIONS(5), }, - [223] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(734), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(216)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(979), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(583), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1779), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(1033), + [anon_sym_export] = ACTIONS(1035), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(1035), + [anon_sym_await] = ACTIONS(1037), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DOT] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(1039), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1035), + [anon_sym_get] = ACTIONS(1035), + [anon_sym_set] = ACTIONS(1035), [sym_html_comment] = ACTIONS(5), }, - [224] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(738), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(217)] = { + [sym_import] = STATE(1326), + [sym_statement_block] = STATE(759), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(792), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [225] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(815), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(218)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(829), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_sequence_expression] = STATE(1792), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [226] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(736), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(219)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(726), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [227] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(617), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(220)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(560), + [sym_expression] = STATE(695), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1802), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1802), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(560), + [sym_subscript_expression] = STATE(560), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1143), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1802), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1803), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(530), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_typeof] = ACTIONS(540), + [anon_sym_void] = ACTIONS(540), + [anon_sym_delete] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(672), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(547), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [228] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(739), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(221)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(915), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [229] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(510), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(222)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(916), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [230] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(507), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(223)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(979), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1253), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1253), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(556), + [sym_subscript_expression] = STATE(556), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1253), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(1041), + [anon_sym_export] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(871), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(1043), + [anon_sym_await] = ACTIONS(1045), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1043), + [anon_sym_get] = ACTIONS(1043), + [anon_sym_set] = ACTIONS(1043), [sym_html_comment] = ACTIONS(5), }, - [231] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(781), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(224)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(695), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [232] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(818), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(225)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(787), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [233] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(790), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(226)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(769), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [234] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(792), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(227)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(941), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [235] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(793), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(228)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(762), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [236] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(794), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(229)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(691), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [237] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(795), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(230)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(971), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1776), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1776), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1776), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1778), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(615), + [anon_sym_await] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(626), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_typeof] = ACTIONS(635), + [anon_sym_void] = ACTIONS(635), + [anon_sym_delete] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(642), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), [sym_html_comment] = ACTIONS(5), }, - [238] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(798), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(231)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(719), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [239] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(799), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(232)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(968), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), [sym_html_comment] = ACTIONS(5), }, - [240] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(800), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(233)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(749), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [241] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(801), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(234)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(848), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [242] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(802), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(235)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(751), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [243] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(804), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(236)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(753), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [244] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(806), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(237)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(756), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [245] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(808), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(238)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(760), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [246] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(757), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(239)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(763), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [247] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(513), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(240)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(775), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [248] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(867), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1159), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1159), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(485), - [sym_subscript_expression] = STATE(485), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1159), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(832), - [anon_sym_export] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(834), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(836), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(241)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(776), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(838), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(834), - [anon_sym_get] = ACTIONS(834), - [anon_sym_set] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [249] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(737), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(242)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(777), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [250] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(611), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(243)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(778), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [251] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(689), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(244)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(588), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [252] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(692), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(245)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(591), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [253] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(693), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(246)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(656), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [254] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(695), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(247)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(780), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [255] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(860), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(248)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(653), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [256] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(696), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(249)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(660), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [257] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(698), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(250)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(662), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [258] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(699), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(251)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(669), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [259] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(700), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(252)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(690), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [260] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(701), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(253)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(671), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [261] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(702), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(254)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(672), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [262] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(703), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(255)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(673), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [263] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(704), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(256)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [264] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(705), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(257)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(675), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [265] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(706), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(258)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(676), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [266] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(707), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(259)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(677), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [267] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(708), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(260)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(678), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [268] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(861), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(261)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(679), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [269] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(832), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(262)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(680), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [270] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(443), - [sym_expression] = STATE(833), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1649), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1649), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(443), - [sym_subscript_expression] = STATE(443), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1019), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1649), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1666), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(347), - [anon_sym_export] = ACTIONS(349), - [anon_sym_LBRACE] = ACTIONS(353), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(349), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(361), - [anon_sym_yield] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(367), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_typeof] = ACTIONS(383), - [anon_sym_void] = ACTIONS(383), - [anon_sym_delete] = ACTIONS(383), - [anon_sym_PLUS_PLUS] = ACTIONS(389), - [anon_sym_DASH_DASH] = ACTIONS(389), + [STATE(263)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(667), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(395), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(399), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(349), - [anon_sym_get] = ACTIONS(349), - [anon_sym_set] = ACTIONS(349), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [271] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(718), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(264)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(791), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [272] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(857), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(265)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(825), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1324), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1324), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(562), + [sym_subscript_expression] = STATE(562), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1324), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(1051), + [anon_sym_export] = ACTIONS(1053), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(1053), + [anon_sym_await] = ACTIONS(1055), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(1057), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(1059), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1053), + [anon_sym_get] = ACTIONS(1053), + [anon_sym_set] = ACTIONS(1053), [sym_html_comment] = ACTIONS(5), }, - [273] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(617), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(266)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(978), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1857), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1857), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1141), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1857), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1779), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(582), + [anon_sym_export] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_typeof] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(680), + [anon_sym_DASH_DASH] = ACTIONS(680), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(609), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(584), + [anon_sym_get] = ACTIONS(584), + [anon_sym_set] = ACTIONS(584), [sym_html_comment] = ACTIONS(5), }, - [274] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(487), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1708), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1708), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1018), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1708), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1709), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(419), - [anon_sym_export] = ACTIONS(421), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(425), - [anon_sym_yield] = ACTIONS(427), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(429), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(431), - [anon_sym_PLUS] = ACTIONS(433), - [anon_sym_DASH] = ACTIONS(433), - [anon_sym_SLASH] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(433), - [anon_sym_void] = ACTIONS(433), - [anon_sym_delete] = ACTIONS(433), - [anon_sym_PLUS_PLUS] = ACTIONS(439), - [anon_sym_DASH_DASH] = ACTIONS(439), + [STATE(267)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(655), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(441), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(443), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(421), - [anon_sym_get] = ACTIONS(421), - [anon_sym_set] = ACTIONS(421), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [275] = { - [sym_import] = STATE(1232), - [sym_parenthesized_expression] = STATE(481), - [sym_expression] = STATE(624), - [sym_primary_expression] = STATE(614), - [sym_yield_expression] = STATE(672), - [sym_object] = STATE(677), - [sym_object_pattern] = STATE(1644), - [sym_array] = STATE(677), - [sym_array_pattern] = STATE(1644), - [sym_jsx_element] = STATE(672), - [sym_jsx_opening_element] = STATE(1043), - [sym_jsx_self_closing_element] = STATE(672), - [sym_class] = STATE(677), - [sym_function_expression] = STATE(677), - [sym_generator_function] = STATE(677), - [sym_arrow_function] = STATE(677), - [sym_call_expression] = STATE(677), - [sym_new_expression] = STATE(615), - [sym_await_expression] = STATE(672), - [sym_member_expression] = STATE(481), - [sym_subscript_expression] = STATE(481), - [sym_assignment_expression] = STATE(672), - [sym__augmented_assignment_lhs] = STATE(1023), - [sym_augmented_assignment_expression] = STATE(672), - [sym__destructuring_pattern] = STATE(1644), - [sym_ternary_expression] = STATE(672), - [sym_binary_expression] = STATE(672), - [sym_unary_expression] = STATE(672), - [sym_update_expression] = STATE(672), - [sym_string] = STATE(677), - [sym_template_string] = STATE(677), - [sym_regex] = STATE(677), - [sym_meta_property] = STATE(677), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1623), - [aux_sym_export_statement_repeat1] = STATE(1204), - [sym_identifier] = ACTIONS(401), - [anon_sym_export] = ACTIONS(403), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_import] = ACTIONS(409), - [anon_sym_let] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_await] = ACTIONS(37), - [anon_sym_yield] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_LT] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [anon_sym_SQUOTE] = ACTIONS(63), - [anon_sym_class] = ACTIONS(413), - [anon_sym_async] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_new] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(73), - [anon_sym_DASH] = ACTIONS(73), - [anon_sym_SLASH] = ACTIONS(75), - [anon_sym_BANG] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(77), - [anon_sym_typeof] = ACTIONS(73), - [anon_sym_void] = ACTIONS(73), - [anon_sym_delete] = ACTIONS(73), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [STATE(268)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(814), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(81), - [sym_number] = ACTIONS(83), - [sym_private_property_identifier] = ACTIONS(85), - [sym_this] = ACTIONS(87), - [sym_super] = ACTIONS(87), - [sym_true] = ACTIONS(87), - [sym_false] = ACTIONS(87), - [sym_null] = ACTIONS(87), - [sym_undefined] = ACTIONS(89), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(403), - [anon_sym_get] = ACTIONS(403), - [anon_sym_set] = ACTIONS(403), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [276] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(510), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(269)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(975), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [277] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(507), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(270)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(813), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [278] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(834), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(271)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(821), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [279] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(836), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(272)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(560), + [sym_expression] = STATE(826), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1802), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1802), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(560), + [sym_subscript_expression] = STATE(560), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1143), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1802), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1803), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(530), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_typeof] = ACTIONS(540), + [anon_sym_void] = ACTIONS(540), + [anon_sym_delete] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(672), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(547), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [280] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(837), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(273)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(552), + [sym_expression] = STATE(855), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1790), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1790), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1140), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1790), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1849), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(161), + [anon_sym_export] = ACTIONS(163), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(163), + [anon_sym_await] = ACTIONS(177), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(196), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(163), + [anon_sym_get] = ACTIONS(163), + [anon_sym_set] = ACTIONS(163), [sym_html_comment] = ACTIONS(5), }, - [281] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(839), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(274)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(588), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1776), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1776), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1776), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1778), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(615), + [anon_sym_await] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(626), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_typeof] = ACTIONS(635), + [anon_sym_void] = ACTIONS(635), + [anon_sym_delete] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(642), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), [sym_html_comment] = ACTIONS(5), }, - [282] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(840), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(275)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(591), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1776), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1776), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1776), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1778), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(615), + [anon_sym_await] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(626), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_typeof] = ACTIONS(635), + [anon_sym_void] = ACTIONS(635), + [anon_sym_delete] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(642), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), [sym_html_comment] = ACTIONS(5), }, - [283] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(841), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(276)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(890), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1776), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1776), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1776), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1778), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(615), + [anon_sym_await] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(626), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_typeof] = ACTIONS(635), + [anon_sym_void] = ACTIONS(635), + [anon_sym_delete] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(642), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), [sym_html_comment] = ACTIONS(5), }, - [284] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(842), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(277)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(974), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), [sym_html_comment] = ACTIONS(5), }, - [285] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(843), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(278)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(893), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1776), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1776), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1776), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1778), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(615), + [anon_sym_await] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(626), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_typeof] = ACTIONS(635), + [anon_sym_void] = ACTIONS(635), + [anon_sym_delete] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(642), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), [sym_html_comment] = ACTIONS(5), }, - [286] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(844), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(279)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(895), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1776), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1776), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1776), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1778), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(615), + [anon_sym_await] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(626), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_typeof] = ACTIONS(635), + [anon_sym_void] = ACTIONS(635), + [anon_sym_delete] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(642), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), [sym_html_comment] = ACTIONS(5), }, - [287] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(845), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(280)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(896), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1776), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1776), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1776), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1778), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(615), + [anon_sym_await] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(626), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_typeof] = ACTIONS(635), + [anon_sym_void] = ACTIONS(635), + [anon_sym_delete] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(642), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), [sym_html_comment] = ACTIONS(5), }, - [288] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(846), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(281)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(897), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1776), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1776), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1776), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1778), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(615), + [anon_sym_await] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(626), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_typeof] = ACTIONS(635), + [anon_sym_void] = ACTIONS(635), + [anon_sym_delete] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(642), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), [sym_html_comment] = ACTIONS(5), }, - [289] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(847), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(282)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(898), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1776), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1776), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1776), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1778), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(615), + [anon_sym_await] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(626), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_typeof] = ACTIONS(635), + [anon_sym_void] = ACTIONS(635), + [anon_sym_delete] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(642), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), [sym_html_comment] = ACTIONS(5), }, - [290] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(848), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(283)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(899), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1776), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1776), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1776), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1778), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(615), + [anon_sym_await] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(626), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_typeof] = ACTIONS(635), + [anon_sym_void] = ACTIONS(635), + [anon_sym_delete] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(642), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), [sym_html_comment] = ACTIONS(5), }, - [291] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(849), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(284)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(900), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1776), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1776), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1776), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1778), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(615), + [anon_sym_await] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(626), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_typeof] = ACTIONS(635), + [anon_sym_void] = ACTIONS(635), + [anon_sym_delete] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(642), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), [sym_html_comment] = ACTIONS(5), }, - [292] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(850), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(285)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(901), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1776), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1776), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1776), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1778), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(615), + [anon_sym_await] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(626), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_typeof] = ACTIONS(635), + [anon_sym_void] = ACTIONS(635), + [anon_sym_delete] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(642), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), [sym_html_comment] = ACTIONS(5), }, - [293] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(819), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(286)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(902), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1776), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1776), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1776), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1778), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(615), + [anon_sym_await] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(626), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_typeof] = ACTIONS(635), + [anon_sym_void] = ACTIONS(635), + [anon_sym_delete] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(642), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), [sym_html_comment] = ACTIONS(5), }, - [294] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(855), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(287)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(903), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1776), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1776), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1776), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1778), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(615), + [anon_sym_await] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(626), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_typeof] = ACTIONS(635), + [anon_sym_void] = ACTIONS(635), + [anon_sym_delete] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(642), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), [sym_html_comment] = ACTIONS(5), }, - [295] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(513), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1720), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1720), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1029), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1720), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1701), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(481), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(483), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(487), - [anon_sym_DASH] = ACTIONS(487), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(491), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(487), - [anon_sym_void] = ACTIONS(487), - [anon_sym_delete] = ACTIONS(487), - [anon_sym_PLUS_PLUS] = ACTIONS(493), - [anon_sym_DASH_DASH] = ACTIONS(493), + [STATE(288)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(904), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1776), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1776), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1776), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1778), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(615), + [anon_sym_await] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(626), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_typeof] = ACTIONS(635), + [anon_sym_void] = ACTIONS(635), + [anon_sym_delete] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(495), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(497), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(642), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), [sym_html_comment] = ACTIONS(5), }, - [296] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(864), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(289)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(905), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1776), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1776), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1776), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1778), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(615), + [anon_sym_await] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(626), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_typeof] = ACTIONS(635), + [anon_sym_void] = ACTIONS(635), + [anon_sym_delete] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(642), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), [sym_html_comment] = ACTIONS(5), }, - [297] = { - [sym_import] = STATE(1272), - [sym_parenthesized_expression] = STATE(430), - [sym_expression] = STATE(785), - [sym_primary_expression] = STATE(509), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(523), - [sym_object_pattern] = STATE(1663), - [sym_array] = STATE(523), - [sym_array_pattern] = STATE(1663), - [sym_jsx_element] = STATE(524), - [sym_jsx_opening_element] = STATE(1037), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(523), - [sym_function_expression] = STATE(523), - [sym_generator_function] = STATE(523), - [sym_arrow_function] = STATE(523), - [sym_call_expression] = STATE(523), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(430), - [sym_subscript_expression] = STATE(430), - [sym_assignment_expression] = STATE(524), - [sym__augmented_assignment_lhs] = STATE(1015), - [sym_augmented_assignment_expression] = STATE(524), - [sym__destructuring_pattern] = STATE(1663), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_string] = STATE(523), - [sym_template_string] = STATE(523), - [sym_regex] = STATE(523), - [sym_meta_property] = STATE(523), - [sym_decorator] = STATE(1006), - [sym_formal_parameters] = STATE(1655), - [aux_sym_export_statement_repeat1] = STATE(1253), - [sym_identifier] = ACTIONS(445), - [anon_sym_export] = ACTIONS(447), - [anon_sym_LBRACE] = ACTIONS(451), - [anon_sym_import] = ACTIONS(357), - [anon_sym_let] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(359), - [anon_sym_await] = ACTIONS(453), - [anon_sym_yield] = ACTIONS(455), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(373), - [anon_sym_class] = ACTIONS(375), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(379), - [anon_sym_new] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(463), - [anon_sym_DASH] = ACTIONS(463), - [anon_sym_SLASH] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(465), - [anon_sym_TILDE] = ACTIONS(465), - [anon_sym_typeof] = ACTIONS(463), - [anon_sym_void] = ACTIONS(463), - [anon_sym_delete] = ACTIONS(463), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), + [STATE(290)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(906), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1776), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1776), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1776), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1778), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(615), + [anon_sym_await] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(626), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_typeof] = ACTIONS(635), + [anon_sym_void] = ACTIONS(635), + [anon_sym_delete] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(391), - [sym_number] = ACTIONS(393), - [sym_private_property_identifier] = ACTIONS(469), - [sym_this] = ACTIONS(397), - [sym_super] = ACTIONS(397), - [sym_true] = ACTIONS(397), - [sym_false] = ACTIONS(397), - [sym_null] = ACTIONS(397), - [sym_undefined] = ACTIONS(471), - [anon_sym_AT] = ACTIONS(91), - [anon_sym_static] = ACTIONS(447), - [anon_sym_get] = ACTIONS(447), - [anon_sym_set] = ACTIONS(447), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(642), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), [sym_html_comment] = ACTIONS(5), }, - [298] = { - [sym_string] = STATE(1412), - [sym_formal_parameters] = STATE(1633), - [sym__property_name] = STATE(1412), - [sym_computed_property_name] = STATE(1412), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(840), - [anon_sym_export] = ACTIONS(842), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(766), - [anon_sym_let] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(854), - [anon_sym_SQUOTE] = ACTIONS(856), - [anon_sym_async] = ACTIONS(842), - [anon_sym_function] = ACTIONS(858), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(291)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(907), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1776), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1776), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1776), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1778), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(615), + [anon_sym_await] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(626), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_typeof] = ACTIONS(635), + [anon_sym_void] = ACTIONS(635), + [anon_sym_delete] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [anon_sym_static] = ACTIONS(842), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(642), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), [sym_html_comment] = ACTIONS(5), }, - [299] = { - [sym_namespace_export] = STATE(1424), - [sym_export_clause] = STATE(1271), - [sym_declaration] = STATE(397), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_class_declaration] = STATE(412), - [sym_function_declaration] = STATE(412), - [sym_generator_function_declaration] = STATE(412), - [sym_decorator] = STATE(1006), - [aux_sym_export_statement_repeat1] = STATE(1220), - [anon_sym_STAR] = ACTIONS(758), - [anon_sym_default] = ACTIONS(760), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_var] = ACTIONS(768), - [anon_sym_let] = ACTIONS(770), - [anon_sym_const] = ACTIONS(770), - [anon_sym_LPAREN] = ACTIONS(764), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(864), - [anon_sym_EQ] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_class] = ACTIONS(782), - [anon_sym_async] = ACTIONS(784), - [anon_sym_function] = ACTIONS(786), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(292)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(912), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1776), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1776), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1776), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1778), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(615), + [anon_sym_await] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(626), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_typeof] = ACTIONS(635), + [anon_sym_void] = ACTIONS(635), + [anon_sym_delete] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_AT] = ACTIONS(91), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(642), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), [sym_html_comment] = ACTIONS(5), }, - [300] = { - [sym_string] = STATE(1412), - [sym_formal_parameters] = STATE(1633), - [sym__property_name] = STATE(1412), - [sym_computed_property_name] = STATE(1412), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(840), - [anon_sym_export] = ACTIONS(842), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(800), - [anon_sym_let] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(854), - [anon_sym_SQUOTE] = ACTIONS(856), - [anon_sym_async] = ACTIONS(842), - [anon_sym_function] = ACTIONS(858), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(293)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(824), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [anon_sym_static] = ACTIONS(842), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [301] = { - [sym_string] = STATE(1412), - [sym_formal_parameters] = STATE(1633), - [sym__property_name] = STATE(1412), - [sym_computed_property_name] = STATE(1412), - [aux_sym_object_repeat1] = STATE(1310), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(840), - [anon_sym_export] = ACTIONS(842), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(792), - [anon_sym_let] = ACTIONS(842), - [anon_sym_LPAREN] = ACTIONS(847), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(854), - [anon_sym_SQUOTE] = ACTIONS(856), - [anon_sym_async] = ACTIONS(842), - [anon_sym_function] = ACTIONS(858), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(294)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(560), + [sym_expression] = STATE(691), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1802), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1802), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(560), + [sym_subscript_expression] = STATE(560), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1143), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1802), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1803), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(530), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_typeof] = ACTIONS(540), + [anon_sym_void] = ACTIONS(540), + [anon_sym_delete] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(672), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [anon_sym_static] = ACTIONS(842), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(547), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [302] = { - [sym_namespace_export] = STATE(1424), - [sym_export_clause] = STATE(1271), - [sym_declaration] = STATE(397), - [sym_variable_declaration] = STATE(412), - [sym_lexical_declaration] = STATE(412), - [sym_class_declaration] = STATE(412), - [sym_function_declaration] = STATE(412), - [sym_generator_function_declaration] = STATE(412), - [sym_decorator] = STATE(1006), - [aux_sym_export_statement_repeat1] = STATE(1220), - [anon_sym_STAR] = ACTIONS(758), - [anon_sym_default] = ACTIONS(868), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_var] = ACTIONS(768), - [anon_sym_let] = ACTIONS(770), - [anon_sym_const] = ACTIONS(770), - [anon_sym_LPAREN] = ACTIONS(764), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(870), - [anon_sym_EQ] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_class] = ACTIONS(782), - [anon_sym_async] = ACTIONS(784), - [anon_sym_function] = ACTIONS(786), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(295)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(560), + [sym_expression] = STATE(808), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1802), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1802), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(560), + [sym_subscript_expression] = STATE(560), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1143), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1802), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1803), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(530), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_typeof] = ACTIONS(540), + [anon_sym_void] = ACTIONS(540), + [anon_sym_delete] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(672), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_AT] = ACTIONS(91), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(547), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [303] = { - [sym_string] = STATE(1412), - [sym__property_name] = STATE(1412), - [sym_computed_property_name] = STATE(1412), - [aux_sym_object_repeat1] = STATE(1310), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(872), - [anon_sym_export] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(792), - [anon_sym_let] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(854), - [anon_sym_SQUOTE] = ACTIONS(856), - [anon_sym_async] = ACTIONS(872), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(296)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(560), + [sym_expression] = STATE(698), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1802), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1802), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(560), + [sym_subscript_expression] = STATE(560), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1143), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1802), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1803), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(530), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_typeof] = ACTIONS(540), + [anon_sym_void] = ACTIONS(540), + [anon_sym_delete] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(672), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [anon_sym_static] = ACTIONS(872), - [anon_sym_get] = ACTIONS(872), - [anon_sym_set] = ACTIONS(872), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(547), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [304] = { - [sym_string] = STATE(1412), - [sym__property_name] = STATE(1412), - [sym_computed_property_name] = STATE(1412), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(872), - [anon_sym_export] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(800), - [anon_sym_let] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(854), - [anon_sym_SQUOTE] = ACTIONS(856), - [anon_sym_async] = ACTIONS(872), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(297)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(560), + [sym_expression] = STATE(696), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1802), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1802), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(560), + [sym_subscript_expression] = STATE(560), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1143), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1802), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1803), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(530), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_typeof] = ACTIONS(540), + [anon_sym_void] = ACTIONS(540), + [anon_sym_delete] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(672), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [anon_sym_static] = ACTIONS(872), - [anon_sym_get] = ACTIONS(872), - [anon_sym_set] = ACTIONS(872), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(547), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [305] = { - [sym_string] = STATE(1412), - [sym__property_name] = STATE(1412), - [sym_computed_property_name] = STATE(1412), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(872), - [anon_sym_export] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(800), - [anon_sym_let] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(854), - [anon_sym_SQUOTE] = ACTIONS(856), - [anon_sym_async] = ACTIONS(874), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(298)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(560), + [sym_expression] = STATE(704), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1802), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1802), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(560), + [sym_subscript_expression] = STATE(560), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1143), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1802), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1803), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(530), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_typeof] = ACTIONS(540), + [anon_sym_void] = ACTIONS(540), + [anon_sym_delete] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(672), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [anon_sym_static] = ACTIONS(872), - [anon_sym_get] = ACTIONS(876), - [anon_sym_set] = ACTIONS(876), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(547), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [306] = { - [sym_string] = STATE(1412), - [sym__property_name] = STATE(1412), - [sym_computed_property_name] = STATE(1412), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(872), - [anon_sym_export] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(766), - [anon_sym_let] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(854), - [anon_sym_SQUOTE] = ACTIONS(856), - [anon_sym_async] = ACTIONS(874), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(299)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(972), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [anon_sym_static] = ACTIONS(872), - [anon_sym_get] = ACTIONS(876), - [anon_sym_set] = ACTIONS(876), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), [sym_html_comment] = ACTIONS(5), }, - [307] = { - [sym_string] = STATE(1412), - [sym__property_name] = STATE(1412), - [sym_computed_property_name] = STATE(1412), - [aux_sym_object_repeat1] = STATE(1310), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(872), - [anon_sym_export] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(844), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(792), - [anon_sym_let] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(854), - [anon_sym_SQUOTE] = ACTIONS(856), - [anon_sym_async] = ACTIONS(874), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(300)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(560), + [sym_expression] = STATE(705), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1802), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1802), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(560), + [sym_subscript_expression] = STATE(560), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1143), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1802), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1803), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(530), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_typeof] = ACTIONS(540), + [anon_sym_void] = ACTIONS(540), + [anon_sym_delete] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(672), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [anon_sym_static] = ACTIONS(872), - [anon_sym_get] = ACTIONS(876), - [anon_sym_set] = ACTIONS(876), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(547), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [308] = { - [sym_string] = STATE(1412), - [sym__property_name] = STATE(1412), - [sym_computed_property_name] = STATE(1412), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(872), - [anon_sym_export] = ACTIONS(872), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(766), - [anon_sym_let] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(851), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(854), - [anon_sym_SQUOTE] = ACTIONS(856), - [anon_sym_async] = ACTIONS(872), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(301)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(560), + [sym_expression] = STATE(707), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1802), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1802), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(560), + [sym_subscript_expression] = STATE(560), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1143), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1802), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1803), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(530), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_typeof] = ACTIONS(540), + [anon_sym_void] = ACTIONS(540), + [anon_sym_delete] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(672), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym_number] = ACTIONS(860), - [sym_private_property_identifier] = ACTIONS(860), - [anon_sym_static] = ACTIONS(872), - [anon_sym_get] = ACTIONS(872), - [anon_sym_set] = ACTIONS(872), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(547), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [309] = { - [sym_formal_parameters] = STATE(1707), - [sym_identifier] = ACTIONS(878), - [anon_sym_export] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(764), - [anon_sym_let] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(764), - [anon_sym_EQ] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_RBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(880), - [anon_sym_function] = ACTIONS(887), - [anon_sym_EQ_GT] = ACTIONS(889), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(302)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(560), + [sym_expression] = STATE(708), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1802), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1802), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(560), + [sym_subscript_expression] = STATE(560), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1143), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1802), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1803), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(530), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_typeof] = ACTIONS(540), + [anon_sym_void] = ACTIONS(540), + [anon_sym_delete] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(672), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(547), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [310] = { - [sym_formal_parameters] = STATE(1707), - [sym_identifier] = ACTIONS(878), - [anon_sym_export] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(764), - [anon_sym_let] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(764), - [anon_sym_EQ] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_RBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(880), - [anon_sym_function] = ACTIONS(887), - [anon_sym_EQ_GT] = ACTIONS(889), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(303)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(560), + [sym_expression] = STATE(709), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1802), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1802), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(560), + [sym_subscript_expression] = STATE(560), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1143), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1802), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1803), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(530), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_typeof] = ACTIONS(540), + [anon_sym_void] = ACTIONS(540), + [anon_sym_delete] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(672), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(547), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [311] = { - [ts_builtin_sym_end] = ACTIONS(499), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(501), - [anon_sym_default] = ACTIONS(501), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_COMMA] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(499), - [anon_sym_import] = ACTIONS(501), - [anon_sym_with] = ACTIONS(501), - [anon_sym_var] = ACTIONS(501), - [anon_sym_let] = ACTIONS(501), - [anon_sym_const] = ACTIONS(501), - [anon_sym_else] = ACTIONS(501), - [anon_sym_if] = ACTIONS(501), - [anon_sym_switch] = ACTIONS(501), - [anon_sym_for] = ACTIONS(501), - [anon_sym_LPAREN] = ACTIONS(499), - [anon_sym_SEMI] = ACTIONS(499), - [anon_sym_await] = ACTIONS(501), - [anon_sym_while] = ACTIONS(501), - [anon_sym_do] = ACTIONS(501), - [anon_sym_try] = ACTIONS(501), - [anon_sym_break] = ACTIONS(501), - [anon_sym_continue] = ACTIONS(501), - [anon_sym_debugger] = ACTIONS(501), - [anon_sym_return] = ACTIONS(501), - [anon_sym_throw] = ACTIONS(501), - [anon_sym_case] = ACTIONS(501), - [anon_sym_catch] = ACTIONS(501), - [anon_sym_finally] = ACTIONS(501), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_LBRACK] = ACTIONS(499), - [anon_sym_LT] = ACTIONS(499), - [anon_sym_DQUOTE] = ACTIONS(499), - [anon_sym_SQUOTE] = ACTIONS(499), - [anon_sym_class] = ACTIONS(501), - [anon_sym_async] = ACTIONS(501), - [anon_sym_function] = ACTIONS(501), - [anon_sym_new] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(501), - [anon_sym_DASH] = ACTIONS(501), - [anon_sym_SLASH] = ACTIONS(501), - [anon_sym_BANG] = ACTIONS(499), - [anon_sym_TILDE] = ACTIONS(499), - [anon_sym_typeof] = ACTIONS(501), - [anon_sym_void] = ACTIONS(501), - [anon_sym_delete] = ACTIONS(501), - [anon_sym_PLUS_PLUS] = ACTIONS(499), - [anon_sym_DASH_DASH] = ACTIONS(499), + [STATE(304)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(560), + [sym_expression] = STATE(710), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1802), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1802), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(560), + [sym_subscript_expression] = STATE(560), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1143), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1802), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1803), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(530), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_typeof] = ACTIONS(540), + [anon_sym_void] = ACTIONS(540), + [anon_sym_delete] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(672), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(499), - [sym_number] = ACTIONS(499), - [sym_private_property_identifier] = ACTIONS(499), - [sym_this] = ACTIONS(501), - [sym_super] = ACTIONS(501), - [sym_true] = ACTIONS(501), - [sym_false] = ACTIONS(501), - [sym_null] = ACTIONS(501), - [sym_undefined] = ACTIONS(501), - [anon_sym_AT] = ACTIONS(499), - [anon_sym_static] = ACTIONS(501), - [anon_sym_get] = ACTIONS(501), - [anon_sym_set] = ACTIONS(501), - [sym__automatic_semicolon] = ACTIONS(893), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(547), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [312] = { - [ts_builtin_sym_end] = ACTIONS(503), - [sym_identifier] = ACTIONS(505), - [anon_sym_export] = ACTIONS(505), - [anon_sym_default] = ACTIONS(505), - [anon_sym_LBRACE] = ACTIONS(503), - [anon_sym_COMMA] = ACTIONS(503), - [anon_sym_RBRACE] = ACTIONS(503), - [anon_sym_import] = ACTIONS(505), - [anon_sym_with] = ACTIONS(505), - [anon_sym_var] = ACTIONS(505), - [anon_sym_let] = ACTIONS(505), - [anon_sym_const] = ACTIONS(505), - [anon_sym_else] = ACTIONS(505), - [anon_sym_if] = ACTIONS(505), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_for] = ACTIONS(505), - [anon_sym_LPAREN] = ACTIONS(503), - [anon_sym_SEMI] = ACTIONS(503), - [anon_sym_await] = ACTIONS(505), - [anon_sym_while] = ACTIONS(505), - [anon_sym_do] = ACTIONS(505), - [anon_sym_try] = ACTIONS(505), - [anon_sym_break] = ACTIONS(505), - [anon_sym_continue] = ACTIONS(505), - [anon_sym_debugger] = ACTIONS(505), - [anon_sym_return] = ACTIONS(505), - [anon_sym_throw] = ACTIONS(505), - [anon_sym_case] = ACTIONS(505), - [anon_sym_catch] = ACTIONS(505), - [anon_sym_finally] = ACTIONS(505), - [anon_sym_yield] = ACTIONS(505), - [anon_sym_LBRACK] = ACTIONS(503), - [anon_sym_LT] = ACTIONS(503), - [anon_sym_DQUOTE] = ACTIONS(503), - [anon_sym_SQUOTE] = ACTIONS(503), - [anon_sym_class] = ACTIONS(505), - [anon_sym_async] = ACTIONS(505), - [anon_sym_function] = ACTIONS(505), - [anon_sym_new] = ACTIONS(505), - [anon_sym_PLUS] = ACTIONS(505), - [anon_sym_DASH] = ACTIONS(505), - [anon_sym_SLASH] = ACTIONS(505), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_TILDE] = ACTIONS(503), - [anon_sym_typeof] = ACTIONS(505), - [anon_sym_void] = ACTIONS(505), - [anon_sym_delete] = ACTIONS(505), - [anon_sym_PLUS_PLUS] = ACTIONS(503), - [anon_sym_DASH_DASH] = ACTIONS(503), + [STATE(305)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(560), + [sym_expression] = STATE(711), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1802), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1802), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(560), + [sym_subscript_expression] = STATE(560), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1143), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1802), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1803), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(530), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_typeof] = ACTIONS(540), + [anon_sym_void] = ACTIONS(540), + [anon_sym_delete] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(672), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(503), - [sym_number] = ACTIONS(503), - [sym_private_property_identifier] = ACTIONS(503), - [sym_this] = ACTIONS(505), - [sym_super] = ACTIONS(505), - [sym_true] = ACTIONS(505), - [sym_false] = ACTIONS(505), - [sym_null] = ACTIONS(505), - [sym_undefined] = ACTIONS(505), - [anon_sym_AT] = ACTIONS(503), - [anon_sym_static] = ACTIONS(505), - [anon_sym_get] = ACTIONS(505), - [anon_sym_set] = ACTIONS(505), - [sym__automatic_semicolon] = ACTIONS(513), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(547), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [313] = { - [sym_variable_declarator] = STATE(1260), - [sym_object_pattern] = STATE(1191), - [sym_array_pattern] = STATE(1191), - [sym__destructuring_pattern] = STATE(1191), - [aux_sym_object_repeat1] = STATE(1310), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(895), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_LBRACE] = ACTIONS(897), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(792), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(306)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(560), + [sym_expression] = STATE(712), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1802), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1802), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(560), + [sym_subscript_expression] = STATE(560), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1143), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1802), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1803), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(530), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_typeof] = ACTIONS(540), + [anon_sym_void] = ACTIONS(540), + [anon_sym_delete] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(672), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(547), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [314] = { - [sym_variable_declarator] = STATE(1260), - [sym_object_pattern] = STATE(1191), - [sym_array_pattern] = STATE(1191), - [sym__destructuring_pattern] = STATE(1191), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(895), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_LBRACE] = ACTIONS(897), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(800), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(307)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(560), + [sym_expression] = STATE(713), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1802), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1802), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(560), + [sym_subscript_expression] = STATE(560), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1143), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1802), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1803), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(530), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_typeof] = ACTIONS(540), + [anon_sym_void] = ACTIONS(540), + [anon_sym_delete] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(672), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(547), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [315] = { - [sym_variable_declarator] = STATE(1260), - [sym_object_pattern] = STATE(1191), - [sym_array_pattern] = STATE(1191), - [sym__destructuring_pattern] = STATE(1191), - [aux_sym_object_repeat1] = STATE(1350), - [aux_sym_object_pattern_repeat1] = STATE(1311), - [sym_identifier] = ACTIONS(895), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_LBRACE] = ACTIONS(897), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(766), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_EQ] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(308)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(560), + [sym_expression] = STATE(714), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1802), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1802), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(560), + [sym_subscript_expression] = STATE(560), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1143), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1802), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1803), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(530), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_typeof] = ACTIONS(540), + [anon_sym_void] = ACTIONS(540), + [anon_sym_delete] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(672), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(547), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [316] = { - [sym_formal_parameters] = STATE(1707), - [sym_identifier] = ACTIONS(878), - [anon_sym_export] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(901), - [anon_sym_RBRACE] = ACTIONS(901), - [anon_sym_let] = ACTIONS(880), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(901), - [anon_sym_in] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(904), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_RBRACK] = ACTIONS(901), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(880), - [anon_sym_function] = ACTIONS(887), - [anon_sym_EQ_GT] = ACTIONS(889), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(309)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(560), + [sym_expression] = STATE(715), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1802), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1802), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(560), + [sym_subscript_expression] = STATE(560), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1143), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1802), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1803), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(530), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_typeof] = ACTIONS(540), + [anon_sym_void] = ACTIONS(540), + [anon_sym_delete] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(672), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(547), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [317] = { - [sym_formal_parameters] = STATE(1633), - [sym_identifier] = ACTIONS(907), - [anon_sym_export] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_let] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(870), - [anon_sym_EQ] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(909), - [anon_sym_function] = ACTIONS(911), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(310)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(560), + [sym_expression] = STATE(716), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1802), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1802), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(560), + [sym_subscript_expression] = STATE(560), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1143), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1802), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1803), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(530), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_typeof] = ACTIONS(540), + [anon_sym_void] = ACTIONS(540), + [anon_sym_delete] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(672), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(909), - [anon_sym_get] = ACTIONS(909), - [anon_sym_set] = ACTIONS(909), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(547), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [318] = { - [sym_formal_parameters] = STATE(1671), - [sym_identifier] = ACTIONS(913), - [anon_sym_export] = ACTIONS(915), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_of] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(917), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(915), - [anon_sym_function] = ACTIONS(919), - [anon_sym_EQ_GT] = ACTIONS(921), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(311)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(560), + [sym_expression] = STATE(717), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1802), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1802), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(560), + [sym_subscript_expression] = STATE(560), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1143), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1802), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1803), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(530), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_typeof] = ACTIONS(540), + [anon_sym_void] = ACTIONS(540), + [anon_sym_delete] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(672), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(915), - [anon_sym_get] = ACTIONS(915), - [anon_sym_set] = ACTIONS(915), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(547), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [319] = { - [sym_formal_parameters] = STATE(1619), - [sym_identifier] = ACTIONS(923), - [anon_sym_export] = ACTIONS(925), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(927), - [anon_sym_RBRACE] = ACTIONS(927), - [anon_sym_let] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(927), - [anon_sym_in] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_RBRACK] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(925), - [anon_sym_function] = ACTIONS(887), - [anon_sym_EQ_GT] = ACTIONS(932), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(312)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(976), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(925), - [anon_sym_get] = ACTIONS(925), - [anon_sym_set] = ACTIONS(925), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [320] = { - [sym_formal_parameters] = STATE(1633), - [sym_identifier] = ACTIONS(907), - [anon_sym_export] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(764), - [anon_sym_let] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(909), - [anon_sym_function] = ACTIONS(919), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(313)] = { + [sym_import] = STATE(1326), + [sym_parenthesized_expression] = STATE(560), + [sym_expression] = STATE(727), + [sym_primary_expression] = STATE(686), + [sym_yield_expression] = STATE(746), + [sym_object] = STATE(740), + [sym_object_pattern] = STATE(1802), + [sym_array] = STATE(740), + [sym_array_pattern] = STATE(1802), + [sym_jsx_element] = STATE(746), + [sym_jsx_opening_element] = STATE(1155), + [sym_jsx_self_closing_element] = STATE(746), + [sym_class] = STATE(740), + [sym_function_expression] = STATE(740), + [sym_generator_function] = STATE(740), + [sym_arrow_function] = STATE(740), + [sym_call_expression] = STATE(740), + [sym_new_expression] = STATE(682), + [sym_await_expression] = STATE(746), + [sym_member_expression] = STATE(560), + [sym_subscript_expression] = STATE(560), + [sym_assignment_expression] = STATE(746), + [sym__augmented_assignment_lhs] = STATE(1143), + [sym_augmented_assignment_expression] = STATE(746), + [sym__destructuring_pattern] = STATE(1802), + [sym_ternary_expression] = STATE(746), + [sym_binary_expression] = STATE(746), + [sym_unary_expression] = STATE(746), + [sym_update_expression] = STATE(746), + [sym_string] = STATE(740), + [sym_template_string] = STATE(740), + [sym_regex] = STATE(740), + [sym_meta_property] = STATE(740), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1803), + [aux_sym_export_statement_repeat1] = STATE(1381), + [sym_identifier] = ACTIONS(520), + [anon_sym_export] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_import] = ACTIONS(173), + [anon_sym_let] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(526), + [anon_sym_LBRACK] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(194), + [anon_sym_async] = ACTIONS(530), + [anon_sym_function] = ACTIONS(198), + [anon_sym_new] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(540), + [anon_sym_DASH] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(670), + [anon_sym_BANG] = ACTIONS(542), + [anon_sym_TILDE] = ACTIONS(542), + [anon_sym_typeof] = ACTIONS(540), + [anon_sym_void] = ACTIONS(540), + [anon_sym_delete] = ACTIONS(540), + [anon_sym_PLUS_PLUS] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(672), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(909), - [anon_sym_get] = ACTIONS(909), - [anon_sym_set] = ACTIONS(909), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(547), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(549), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(522), + [anon_sym_get] = ACTIONS(522), + [anon_sym_set] = ACTIONS(522), [sym_html_comment] = ACTIONS(5), }, - [321] = { - [sym_formal_parameters] = STATE(1671), - [sym_identifier] = ACTIONS(913), - [anon_sym_export] = ACTIONS(915), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_of] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(915), - [anon_sym_function] = ACTIONS(919), - [anon_sym_EQ_GT] = ACTIONS(921), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(314)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(507), + [sym_expression] = STATE(825), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1815), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1815), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(507), + [sym_subscript_expression] = STATE(507), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1139), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1815), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1763), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(369), + [anon_sym_export] = ACTIONS(371), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(371), + [anon_sym_await] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(382), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(398), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(404), + [anon_sym_PLUS] = ACTIONS(412), + [anon_sym_DASH] = ACTIONS(412), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(414), + [anon_sym_TILDE] = ACTIONS(414), + [anon_sym_typeof] = ACTIONS(412), + [anon_sym_void] = ACTIONS(412), + [anon_sym_delete] = ACTIONS(412), + [anon_sym_PLUS_PLUS] = ACTIONS(660), + [anon_sym_DASH_DASH] = ACTIONS(660), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(915), - [anon_sym_get] = ACTIONS(915), - [anon_sym_set] = ACTIONS(915), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(424), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(371), + [anon_sym_get] = ACTIONS(371), + [anon_sym_set] = ACTIONS(371), [sym_html_comment] = ACTIONS(5), }, - [322] = { - [sym_formal_parameters] = STATE(1633), - [sym_identifier] = ACTIONS(907), - [anon_sym_export] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_let] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_COLON] = ACTIONS(864), - [anon_sym_EQ] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(909), - [anon_sym_function] = ACTIONS(858), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(315)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(588), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(909), - [anon_sym_get] = ACTIONS(909), - [anon_sym_set] = ACTIONS(909), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), [sym_html_comment] = ACTIONS(5), }, - [323] = { - [sym_formal_parameters] = STATE(1633), - [sym_identifier] = ACTIONS(907), - [anon_sym_export] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(764), - [anon_sym_let] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_in] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(909), - [anon_sym_function] = ACTIONS(919), - [anon_sym_EQ_GT] = ACTIONS(788), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(316)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(591), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(909), - [anon_sym_get] = ACTIONS(909), - [anon_sym_set] = ACTIONS(909), - [sym__automatic_semicolon] = ACTIONS(764), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), [sym_html_comment] = ACTIONS(5), }, - [324] = { - [sym_catch_clause] = STATE(333), - [sym_finally_clause] = STATE(367), - [ts_builtin_sym_end] = ACTIONS(934), - [sym_identifier] = ACTIONS(936), - [anon_sym_export] = ACTIONS(936), - [anon_sym_default] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(934), - [anon_sym_RBRACE] = ACTIONS(934), - [anon_sym_import] = ACTIONS(936), - [anon_sym_with] = ACTIONS(936), - [anon_sym_var] = ACTIONS(936), - [anon_sym_let] = ACTIONS(936), - [anon_sym_const] = ACTIONS(936), - [anon_sym_else] = ACTIONS(936), - [anon_sym_if] = ACTIONS(936), - [anon_sym_switch] = ACTIONS(936), - [anon_sym_for] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_await] = ACTIONS(936), - [anon_sym_while] = ACTIONS(936), - [anon_sym_do] = ACTIONS(936), - [anon_sym_try] = ACTIONS(936), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_debugger] = ACTIONS(936), - [anon_sym_return] = ACTIONS(936), - [anon_sym_throw] = ACTIONS(936), - [anon_sym_case] = ACTIONS(936), - [anon_sym_catch] = ACTIONS(938), - [anon_sym_finally] = ACTIONS(940), - [anon_sym_yield] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(934), - [anon_sym_LT] = ACTIONS(934), - [anon_sym_DQUOTE] = ACTIONS(934), - [anon_sym_SQUOTE] = ACTIONS(934), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(936), - [anon_sym_function] = ACTIONS(936), - [anon_sym_new] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_SLASH] = ACTIONS(936), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_TILDE] = ACTIONS(934), - [anon_sym_typeof] = ACTIONS(936), - [anon_sym_void] = ACTIONS(936), - [anon_sym_delete] = ACTIONS(936), - [anon_sym_PLUS_PLUS] = ACTIONS(934), - [anon_sym_DASH_DASH] = ACTIONS(934), + [STATE(317)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(919), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(318)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(921), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(319)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(887), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(320)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(923), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(321)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(924), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(322)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(925), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(323)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(926), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(324)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(927), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(325)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(928), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(326)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(929), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(327)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(930), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(328)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(931), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(329)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(932), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(330)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(933), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(331)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(934), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(332)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(935), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(333)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(940), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(334)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(973), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(335)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(588), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1857), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1857), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1141), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1857), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1779), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(582), + [anon_sym_export] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_typeof] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(680), + [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(609), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(584), + [anon_sym_get] = ACTIONS(584), + [anon_sym_set] = ACTIONS(584), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(336)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(591), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1857), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1857), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1141), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1857), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1779), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(582), + [anon_sym_export] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_typeof] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(680), + [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(609), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(584), + [anon_sym_get] = ACTIONS(584), + [anon_sym_set] = ACTIONS(584), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(337)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(942), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1857), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1857), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1141), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1857), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1779), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(582), + [anon_sym_export] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_typeof] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(680), + [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(609), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(584), + [anon_sym_get] = ACTIONS(584), + [anon_sym_set] = ACTIONS(584), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(338)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(944), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1857), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1857), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1141), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1857), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1779), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(582), + [anon_sym_export] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_typeof] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(680), + [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(609), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(584), + [anon_sym_get] = ACTIONS(584), + [anon_sym_set] = ACTIONS(584), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(339)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(945), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1857), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1857), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1141), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1857), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1779), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(582), + [anon_sym_export] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_typeof] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(680), + [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(609), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(584), + [anon_sym_get] = ACTIONS(584), + [anon_sym_set] = ACTIONS(584), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(340)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(947), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1857), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1857), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1141), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1857), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1779), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(582), + [anon_sym_export] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_typeof] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(680), + [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(609), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(584), + [anon_sym_get] = ACTIONS(584), + [anon_sym_set] = ACTIONS(584), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(341)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(948), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1857), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1857), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1141), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1857), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1779), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(582), + [anon_sym_export] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_typeof] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(680), + [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(609), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(584), + [anon_sym_get] = ACTIONS(584), + [anon_sym_set] = ACTIONS(584), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(342)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(949), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1857), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1857), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1141), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1857), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1779), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(582), + [anon_sym_export] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_typeof] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(680), + [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(609), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(584), + [anon_sym_get] = ACTIONS(584), + [anon_sym_set] = ACTIONS(584), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(343)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(950), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1857), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1857), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1141), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1857), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1779), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(582), + [anon_sym_export] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_typeof] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(680), + [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(609), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(584), + [anon_sym_get] = ACTIONS(584), + [anon_sym_set] = ACTIONS(584), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(344)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(951), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1857), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1857), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1141), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1857), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1779), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(582), + [anon_sym_export] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_typeof] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(680), + [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(609), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(584), + [anon_sym_get] = ACTIONS(584), + [anon_sym_set] = ACTIONS(584), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(345)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(952), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1857), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1857), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1141), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1857), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1779), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(582), + [anon_sym_export] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_typeof] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(680), + [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(609), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(584), + [anon_sym_get] = ACTIONS(584), + [anon_sym_set] = ACTIONS(584), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(346)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(953), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1857), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1857), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1141), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1857), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1779), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(582), + [anon_sym_export] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_typeof] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(680), + [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(609), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(584), + [anon_sym_get] = ACTIONS(584), + [anon_sym_set] = ACTIONS(584), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(347)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(954), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1857), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1857), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1141), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1857), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1779), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(582), + [anon_sym_export] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_typeof] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(680), + [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(609), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(584), + [anon_sym_get] = ACTIONS(584), + [anon_sym_set] = ACTIONS(584), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(348)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(955), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1857), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1857), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1141), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1857), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1779), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(582), + [anon_sym_export] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_typeof] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(680), + [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(609), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(584), + [anon_sym_get] = ACTIONS(584), + [anon_sym_set] = ACTIONS(584), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(349)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(956), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1857), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1857), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1141), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1857), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1779), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(582), + [anon_sym_export] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_typeof] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(680), + [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(609), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(584), + [anon_sym_get] = ACTIONS(584), + [anon_sym_set] = ACTIONS(584), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(350)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(957), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1857), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1857), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1141), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1857), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1779), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(582), + [anon_sym_export] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_typeof] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(680), + [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(609), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(584), + [anon_sym_get] = ACTIONS(584), + [anon_sym_set] = ACTIONS(584), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(351)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(958), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1857), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1857), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1141), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1857), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1779), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(582), + [anon_sym_export] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_typeof] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(680), + [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(609), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(584), + [anon_sym_get] = ACTIONS(584), + [anon_sym_set] = ACTIONS(584), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(352)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(959), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1857), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1857), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1141), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1857), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1779), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(582), + [anon_sym_export] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_typeof] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(680), + [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(609), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(584), + [anon_sym_get] = ACTIONS(584), + [anon_sym_set] = ACTIONS(584), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(353)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(579), + [sym_expression] = STATE(964), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1857), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1857), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(579), + [sym_subscript_expression] = STATE(579), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1141), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1857), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1779), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(582), + [anon_sym_export] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(584), + [anon_sym_await] = ACTIONS(586), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(594), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_SLASH] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(604), + [anon_sym_TILDE] = ACTIONS(604), + [anon_sym_typeof] = ACTIONS(602), + [anon_sym_void] = ACTIONS(602), + [anon_sym_delete] = ACTIONS(602), + [anon_sym_PLUS_PLUS] = ACTIONS(680), + [anon_sym_DASH_DASH] = ACTIONS(680), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(609), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(611), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(584), + [anon_sym_get] = ACTIONS(584), + [anon_sym_set] = ACTIONS(584), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(354)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(970), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(355)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(498), + [sym_expression] = STATE(977), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1762), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1762), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(498), + [sym_subscript_expression] = STATE(498), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1138), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1762), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1816), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(430), + [anon_sym_export] = ACTIONS(432), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(432), + [anon_sym_await] = ACTIONS(436), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(445), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(447), + [anon_sym_PLUS] = ACTIONS(452), + [anon_sym_DASH] = ACTIONS(452), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(454), + [anon_sym_typeof] = ACTIONS(452), + [anon_sym_void] = ACTIONS(452), + [anon_sym_delete] = ACTIONS(452), + [anon_sym_PLUS_PLUS] = ACTIONS(684), + [anon_sym_DASH_DASH] = ACTIONS(684), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(461), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(432), + [anon_sym_get] = ACTIONS(432), + [anon_sym_set] = ACTIONS(432), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(356)] = { + [sym_import] = STATE(1333), + [sym_parenthesized_expression] = STATE(578), + [sym_expression] = STATE(892), + [sym_primary_expression] = STATE(589), + [sym_yield_expression] = STATE(602), + [sym_object] = STATE(646), + [sym_object_pattern] = STATE(1776), + [sym_array] = STATE(646), + [sym_array_pattern] = STATE(1776), + [sym_jsx_element] = STATE(602), + [sym_jsx_opening_element] = STATE(1153), + [sym_jsx_self_closing_element] = STATE(602), + [sym_class] = STATE(646), + [sym_function_expression] = STATE(646), + [sym_generator_function] = STATE(646), + [sym_arrow_function] = STATE(646), + [sym_call_expression] = STATE(646), + [sym_new_expression] = STATE(585), + [sym_await_expression] = STATE(602), + [sym_member_expression] = STATE(578), + [sym_subscript_expression] = STATE(578), + [sym_assignment_expression] = STATE(602), + [sym__augmented_assignment_lhs] = STATE(1142), + [sym_augmented_assignment_expression] = STATE(602), + [sym__destructuring_pattern] = STATE(1776), + [sym_ternary_expression] = STATE(602), + [sym_binary_expression] = STATE(602), + [sym_unary_expression] = STATE(602), + [sym_update_expression] = STATE(602), + [sym_string] = STATE(646), + [sym_template_string] = STATE(646), + [sym_regex] = STATE(646), + [sym_meta_property] = STATE(646), + [sym_decorator] = STATE(1097), + [sym_formal_parameters] = STATE(1778), + [aux_sym_export_statement_repeat1] = STATE(1388), + [sym_identifier] = ACTIONS(613), + [anon_sym_export] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(434), + [anon_sym_import] = ACTIONS(375), + [anon_sym_let] = ACTIONS(615), + [anon_sym_await] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(650), + [anon_sym_yield] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LT] = ACTIONS(820), + [anon_sym_DQUOTE] = ACTIONS(392), + [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_class] = ACTIONS(396), + [anon_sym_async] = ACTIONS(626), + [anon_sym_function] = ACTIONS(400), + [anon_sym_new] = ACTIONS(630), + [anon_sym_PLUS] = ACTIONS(635), + [anon_sym_DASH] = ACTIONS(635), + [anon_sym_SLASH] = ACTIONS(658), + [anon_sym_BANG] = ACTIONS(637), + [anon_sym_TILDE] = ACTIONS(637), + [anon_sym_typeof] = ACTIONS(635), + [anon_sym_void] = ACTIONS(635), + [anon_sym_delete] = ACTIONS(635), + [anon_sym_PLUS_PLUS] = ACTIONS(688), + [anon_sym_DASH_DASH] = ACTIONS(688), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(662), + [sym_number] = ACTIONS(422), + [sym_private_property_identifier] = ACTIONS(642), + [sym_this] = ACTIONS(426), + [sym_super] = ACTIONS(426), + [sym_true] = ACTIONS(426), + [sym_false] = ACTIONS(426), + [sym_null] = ACTIONS(426), + [sym_undefined] = ACTIONS(644), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(357)] = { + [sym_string] = STATE(1710), + [sym_formal_parameters] = STATE(1834), + [sym__property_name] = STATE(1710), + [sym_computed_property_name] = STATE(1710), + [aux_sym_object_repeat1] = STATE(1418), + [aux_sym_object_pattern_repeat1] = STATE(1452), + [sym_identifier] = ACTIONS(1061), + [anon_sym_export] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_RBRACE] = ACTIONS(351), + [anon_sym_let] = ACTIONS(1063), + [anon_sym_await] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(1079), + [anon_sym_EQ_GT] = ACTIONS(200), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(169), + [sym_number] = ACTIONS(1081), + [sym_private_property_identifier] = ACTIONS(1081), + [anon_sym_static] = ACTIONS(1063), + [anon_sym_get] = ACTIONS(1083), + [anon_sym_set] = ACTIONS(1083), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(358)] = { + [sym_string] = STATE(1710), + [sym_formal_parameters] = STATE(1834), + [sym__property_name] = STATE(1710), + [sym_computed_property_name] = STATE(1710), + [aux_sym_object_repeat1] = STATE(1487), + [aux_sym_object_pattern_repeat1] = STATE(1452), + [sym_identifier] = ACTIONS(1061), + [anon_sym_export] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_RBRACE] = ACTIONS(171), + [anon_sym_let] = ACTIONS(1063), + [anon_sym_await] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(1079), + [anon_sym_EQ_GT] = ACTIONS(200), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(169), + [sym_number] = ACTIONS(1081), + [sym_private_property_identifier] = ACTIONS(1081), + [anon_sym_static] = ACTIONS(1063), + [anon_sym_get] = ACTIONS(1083), + [anon_sym_set] = ACTIONS(1083), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(359)] = { + [sym_string] = STATE(1710), + [sym_formal_parameters] = STATE(1834), + [sym__property_name] = STATE(1710), + [sym_computed_property_name] = STATE(1710), + [aux_sym_object_repeat1] = STATE(1418), + [aux_sym_object_pattern_repeat1] = STATE(1452), + [sym_identifier] = ACTIONS(1061), + [anon_sym_export] = ACTIONS(1063), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_RBRACE] = ACTIONS(216), + [anon_sym_let] = ACTIONS(1063), + [anon_sym_await] = ACTIONS(1063), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_async] = ACTIONS(1063), + [anon_sym_function] = ACTIONS(1079), + [anon_sym_EQ_GT] = ACTIONS(200), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(169), + [sym_number] = ACTIONS(1081), + [sym_private_property_identifier] = ACTIONS(1081), + [anon_sym_static] = ACTIONS(1063), + [anon_sym_get] = ACTIONS(1083), + [anon_sym_set] = ACTIONS(1083), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(360)] = { + [sym_string] = STATE(1710), + [sym__property_name] = STATE(1710), + [sym_computed_property_name] = STATE(1710), + [aux_sym_object_repeat1] = STATE(1487), + [aux_sym_object_pattern_repeat1] = STATE(1452), + [sym_identifier] = ACTIONS(1085), + [anon_sym_export] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_RBRACE] = ACTIONS(171), + [anon_sym_let] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1085), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_async] = ACTIONS(1085), + [anon_sym_EQ_GT] = ACTIONS(200), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(169), + [sym_number] = ACTIONS(1081), + [sym_private_property_identifier] = ACTIONS(1081), + [anon_sym_static] = ACTIONS(1085), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1085), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(361)] = { + [sym_string] = STATE(1710), + [sym__property_name] = STATE(1710), + [sym_computed_property_name] = STATE(1710), + [aux_sym_object_repeat1] = STATE(1418), + [aux_sym_object_pattern_repeat1] = STATE(1452), + [sym_identifier] = ACTIONS(1085), + [anon_sym_export] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_RBRACE] = ACTIONS(351), + [anon_sym_let] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1085), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_async] = ACTIONS(1087), + [anon_sym_EQ_GT] = ACTIONS(200), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(169), + [sym_number] = ACTIONS(1081), + [sym_private_property_identifier] = ACTIONS(1081), + [anon_sym_static] = ACTIONS(1085), + [anon_sym_get] = ACTIONS(1089), + [anon_sym_set] = ACTIONS(1089), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(362)] = { + [sym_string] = STATE(1710), + [sym__property_name] = STATE(1710), + [sym_computed_property_name] = STATE(1710), + [aux_sym_object_repeat1] = STATE(1418), + [aux_sym_object_pattern_repeat1] = STATE(1452), + [sym_identifier] = ACTIONS(1085), + [anon_sym_export] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_RBRACE] = ACTIONS(351), + [anon_sym_let] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1085), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_async] = ACTIONS(1085), + [anon_sym_EQ_GT] = ACTIONS(200), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(169), + [sym_number] = ACTIONS(1081), + [sym_private_property_identifier] = ACTIONS(1081), + [anon_sym_static] = ACTIONS(1085), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1085), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(363)] = { + [sym_string] = STATE(1710), + [sym__property_name] = STATE(1710), + [sym_computed_property_name] = STATE(1710), + [aux_sym_object_repeat1] = STATE(1487), + [aux_sym_object_pattern_repeat1] = STATE(1452), + [sym_identifier] = ACTIONS(1085), + [anon_sym_export] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_RBRACE] = ACTIONS(171), + [anon_sym_let] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1085), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_async] = ACTIONS(1087), + [anon_sym_EQ_GT] = ACTIONS(200), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(169), + [sym_number] = ACTIONS(1081), + [sym_private_property_identifier] = ACTIONS(1081), + [anon_sym_static] = ACTIONS(1085), + [anon_sym_get] = ACTIONS(1089), + [anon_sym_set] = ACTIONS(1089), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(364)] = { + [sym_string] = STATE(1710), + [sym__property_name] = STATE(1710), + [sym_computed_property_name] = STATE(1710), + [aux_sym_object_repeat1] = STATE(1418), + [aux_sym_object_pattern_repeat1] = STATE(1452), + [sym_identifier] = ACTIONS(1085), + [anon_sym_export] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_RBRACE] = ACTIONS(216), + [anon_sym_let] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1085), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_async] = ACTIONS(1087), + [anon_sym_EQ_GT] = ACTIONS(200), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(169), + [sym_number] = ACTIONS(1081), + [sym_private_property_identifier] = ACTIONS(1081), + [anon_sym_static] = ACTIONS(1085), + [anon_sym_get] = ACTIONS(1089), + [anon_sym_set] = ACTIONS(1089), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(365)] = { + [sym_string] = STATE(1710), + [sym__property_name] = STATE(1710), + [sym_computed_property_name] = STATE(1710), + [aux_sym_object_repeat1] = STATE(1418), + [aux_sym_object_pattern_repeat1] = STATE(1452), + [sym_identifier] = ACTIONS(1085), + [anon_sym_export] = ACTIONS(1085), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_RBRACE] = ACTIONS(216), + [anon_sym_let] = ACTIONS(1085), + [anon_sym_await] = ACTIONS(1085), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(1075), + [anon_sym_SQUOTE] = ACTIONS(1077), + [anon_sym_async] = ACTIONS(1085), + [anon_sym_EQ_GT] = ACTIONS(200), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(169), + [sym_number] = ACTIONS(1081), + [sym_private_property_identifier] = ACTIONS(1081), + [anon_sym_static] = ACTIONS(1085), + [anon_sym_get] = ACTIONS(1085), + [anon_sym_set] = ACTIONS(1085), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(366)] = { + [sym_formal_parameters] = STATE(1859), + [sym_identifier] = ACTIONS(1091), + [anon_sym_export] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_RBRACE] = ACTIONS(169), + [anon_sym_let] = ACTIONS(1093), + [anon_sym_await] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_RPAREN] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(169), + [anon_sym_EQ] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_RBRACK] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(169), + [anon_sym_async] = ACTIONS(1093), + [anon_sym_function] = ACTIONS(1098), + [anon_sym_EQ_GT] = ACTIONS(402), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(169), + [anon_sym_static] = ACTIONS(1093), + [anon_sym_get] = ACTIONS(1093), + [anon_sym_set] = ACTIONS(1093), + [sym__ternary_qmark] = ACTIONS(169), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(367)] = { + [sym_formal_parameters] = STATE(1859), + [sym_identifier] = ACTIONS(1091), + [anon_sym_export] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_RBRACE] = ACTIONS(169), + [anon_sym_let] = ACTIONS(1093), + [anon_sym_await] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_RPAREN] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(169), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_RBRACK] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(169), + [anon_sym_async] = ACTIONS(1093), + [anon_sym_function] = ACTIONS(1098), + [anon_sym_EQ_GT] = ACTIONS(402), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(169), + [anon_sym_static] = ACTIONS(1093), + [anon_sym_get] = ACTIONS(1093), + [anon_sym_set] = ACTIONS(1093), + [sym__ternary_qmark] = ACTIONS(169), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(368)] = { + [sym_variable_declarator] = STATE(1385), + [sym_object_pattern] = STATE(1311), + [sym_array_pattern] = STATE(1311), + [sym__destructuring_pattern] = STATE(1311), + [aux_sym_object_repeat1] = STATE(1418), + [aux_sym_object_pattern_repeat1] = STATE(1452), + [sym_identifier] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_RBRACE] = ACTIONS(351), + [anon_sym_of] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(169), + [anon_sym_EQ_GT] = ACTIONS(200), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(169), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(369)] = { + [ts_builtin_sym_end] = ACTIONS(694), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(696), + [anon_sym_default] = ACTIONS(696), + [anon_sym_LBRACE] = ACTIONS(694), + [anon_sym_COMMA] = ACTIONS(694), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_import] = ACTIONS(696), + [anon_sym_with] = ACTIONS(696), + [anon_sym_var] = ACTIONS(696), + [anon_sym_let] = ACTIONS(696), + [anon_sym_const] = ACTIONS(696), + [anon_sym_using] = ACTIONS(696), + [anon_sym_await] = ACTIONS(696), + [anon_sym_else] = ACTIONS(696), + [anon_sym_if] = ACTIONS(696), + [anon_sym_switch] = ACTIONS(696), + [anon_sym_for] = ACTIONS(696), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_while] = ACTIONS(696), + [anon_sym_do] = ACTIONS(696), + [anon_sym_try] = ACTIONS(696), + [anon_sym_break] = ACTIONS(696), + [anon_sym_continue] = ACTIONS(696), + [anon_sym_debugger] = ACTIONS(696), + [anon_sym_return] = ACTIONS(696), + [anon_sym_throw] = ACTIONS(696), + [anon_sym_case] = ACTIONS(696), + [anon_sym_catch] = ACTIONS(696), + [anon_sym_finally] = ACTIONS(696), + [anon_sym_yield] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(694), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_class] = ACTIONS(696), + [anon_sym_async] = ACTIONS(696), + [anon_sym_function] = ACTIONS(696), + [anon_sym_new] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(696), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(694), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(694), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(694), + [sym_number] = ACTIONS(694), + [sym_private_property_identifier] = ACTIONS(694), + [sym_this] = ACTIONS(696), + [sym_super] = ACTIONS(696), + [sym_true] = ACTIONS(696), + [sym_false] = ACTIONS(696), + [sym_null] = ACTIONS(696), + [sym_undefined] = ACTIONS(696), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_static] = ACTIONS(696), + [anon_sym_get] = ACTIONS(696), + [anon_sym_set] = ACTIONS(696), + [sym__automatic_semicolon] = ACTIONS(1108), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(370)] = { + [sym_variable_declarator] = STATE(1385), + [sym_object_pattern] = STATE(1311), + [sym_array_pattern] = STATE(1311), + [sym__destructuring_pattern] = STATE(1311), + [aux_sym_object_repeat1] = STATE(1487), + [aux_sym_object_pattern_repeat1] = STATE(1452), + [sym_identifier] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_RBRACE] = ACTIONS(171), + [anon_sym_of] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(169), + [anon_sym_EQ_GT] = ACTIONS(200), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(169), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(371)] = { + [sym_formal_parameters] = STATE(1834), + [sym_identifier] = ACTIONS(1110), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_let] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1112), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(494), + [anon_sym_EQ] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(169), + [anon_sym_async] = ACTIONS(1112), + [anon_sym_function] = ACTIONS(1079), + [anon_sym_EQ_GT] = ACTIONS(200), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(169), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_get] = ACTIONS(1112), + [anon_sym_set] = ACTIONS(1112), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(372)] = { + [sym_formal_parameters] = STATE(1834), + [sym_identifier] = ACTIONS(1110), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_RBRACE] = ACTIONS(169), + [anon_sym_let] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1112), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(169), + [anon_sym_async] = ACTIONS(1112), + [anon_sym_function] = ACTIONS(1114), + [anon_sym_EQ_GT] = ACTIONS(200), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(169), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_get] = ACTIONS(1112), + [anon_sym_set] = ACTIONS(1112), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(373)] = { + [sym_formal_parameters] = STATE(1813), + [sym_identifier] = ACTIONS(1116), + [anon_sym_export] = ACTIONS(1118), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_let] = ACTIONS(1118), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_of] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(169), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(1114), + [anon_sym_EQ_GT] = ACTIONS(500), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(169), + [anon_sym_static] = ACTIONS(1118), + [anon_sym_get] = ACTIONS(1118), + [anon_sym_set] = ACTIONS(1118), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(374)] = { + [ts_builtin_sym_end] = ACTIONS(708), + [sym_identifier] = ACTIONS(710), + [anon_sym_export] = ACTIONS(710), + [anon_sym_default] = ACTIONS(710), + [anon_sym_LBRACE] = ACTIONS(708), + [anon_sym_COMMA] = ACTIONS(708), + [anon_sym_RBRACE] = ACTIONS(708), + [anon_sym_import] = ACTIONS(710), + [anon_sym_with] = ACTIONS(710), + [anon_sym_var] = ACTIONS(710), + [anon_sym_let] = ACTIONS(710), + [anon_sym_const] = ACTIONS(710), + [anon_sym_using] = ACTIONS(710), + [anon_sym_await] = ACTIONS(710), + [anon_sym_else] = ACTIONS(710), + [anon_sym_if] = ACTIONS(710), + [anon_sym_switch] = ACTIONS(710), + [anon_sym_for] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(708), + [anon_sym_while] = ACTIONS(710), + [anon_sym_do] = ACTIONS(710), + [anon_sym_try] = ACTIONS(710), + [anon_sym_break] = ACTIONS(710), + [anon_sym_continue] = ACTIONS(710), + [anon_sym_debugger] = ACTIONS(710), + [anon_sym_return] = ACTIONS(710), + [anon_sym_throw] = ACTIONS(710), + [anon_sym_case] = ACTIONS(710), + [anon_sym_catch] = ACTIONS(710), + [anon_sym_finally] = ACTIONS(710), + [anon_sym_yield] = ACTIONS(710), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LT] = ACTIONS(708), + [anon_sym_DQUOTE] = ACTIONS(708), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_class] = ACTIONS(710), + [anon_sym_async] = ACTIONS(710), + [anon_sym_function] = ACTIONS(710), + [anon_sym_new] = ACTIONS(710), + [anon_sym_PLUS] = ACTIONS(710), + [anon_sym_DASH] = ACTIONS(710), + [anon_sym_SLASH] = ACTIONS(710), + [anon_sym_BANG] = ACTIONS(708), + [anon_sym_TILDE] = ACTIONS(708), + [anon_sym_typeof] = ACTIONS(710), + [anon_sym_void] = ACTIONS(710), + [anon_sym_delete] = ACTIONS(710), + [anon_sym_PLUS_PLUS] = ACTIONS(708), + [anon_sym_DASH_DASH] = ACTIONS(708), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(708), + [sym_number] = ACTIONS(708), + [sym_private_property_identifier] = ACTIONS(708), + [sym_this] = ACTIONS(710), + [sym_super] = ACTIONS(710), + [sym_true] = ACTIONS(710), + [sym_false] = ACTIONS(710), + [sym_null] = ACTIONS(710), + [sym_undefined] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(708), + [anon_sym_static] = ACTIONS(710), + [anon_sym_get] = ACTIONS(710), + [anon_sym_set] = ACTIONS(710), + [sym__automatic_semicolon] = ACTIONS(720), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(375)] = { + [sym_formal_parameters] = STATE(1834), + [sym_identifier] = ACTIONS(1110), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_RBRACE] = ACTIONS(169), + [anon_sym_let] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1112), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(169), + [anon_sym_async] = ACTIONS(1112), + [anon_sym_function] = ACTIONS(1114), + [anon_sym_EQ_GT] = ACTIONS(200), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(169), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_get] = ACTIONS(1112), + [anon_sym_set] = ACTIONS(1112), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(376)] = { + [sym_formal_parameters] = STATE(1834), + [sym_identifier] = ACTIONS(1110), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_let] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1112), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(488), + [anon_sym_EQ] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(169), + [anon_sym_async] = ACTIONS(1112), + [anon_sym_function] = ACTIONS(1120), + [anon_sym_EQ_GT] = ACTIONS(200), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(169), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_get] = ACTIONS(1112), + [anon_sym_set] = ACTIONS(1112), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(377)] = { + [sym_formal_parameters] = STATE(1813), + [sym_identifier] = ACTIONS(1116), + [anon_sym_export] = ACTIONS(1118), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_let] = ACTIONS(1118), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_of] = ACTIONS(165), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(528), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(169), + [anon_sym_async] = ACTIONS(1118), + [anon_sym_function] = ACTIONS(1114), + [anon_sym_EQ_GT] = ACTIONS(500), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(169), + [anon_sym_static] = ACTIONS(1118), + [anon_sym_get] = ACTIONS(1118), + [anon_sym_set] = ACTIONS(1118), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(378)] = { + [sym_formal_parameters] = STATE(1824), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_RBRACE] = ACTIONS(509), + [anon_sym_let] = ACTIONS(1124), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_RPAREN] = ACTIONS(509), + [anon_sym_in] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(511), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_RBRACK] = ACTIONS(509), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(169), + [anon_sym_async] = ACTIONS(1124), + [anon_sym_function] = ACTIONS(1098), + [anon_sym_EQ_GT] = ACTIONS(498), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(169), + [anon_sym_static] = ACTIONS(1124), + [anon_sym_get] = ACTIONS(1124), + [anon_sym_set] = ACTIONS(1124), + [sym__ternary_qmark] = ACTIONS(169), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(379)] = { + [sym_formal_parameters] = STATE(1859), + [sym_identifier] = ACTIONS(1091), + [anon_sym_export] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_RBRACE] = ACTIONS(514), + [anon_sym_let] = ACTIONS(1093), + [anon_sym_await] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_RPAREN] = ACTIONS(514), + [anon_sym_in] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_RBRACK] = ACTIONS(514), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(169), + [anon_sym_async] = ACTIONS(1093), + [anon_sym_function] = ACTIONS(1098), + [anon_sym_EQ_GT] = ACTIONS(402), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(169), + [anon_sym_static] = ACTIONS(1093), + [anon_sym_get] = ACTIONS(1093), + [anon_sym_set] = ACTIONS(1093), + [sym__ternary_qmark] = ACTIONS(169), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(380)] = { + [sym_variable_declarator] = STATE(1385), + [sym_object_pattern] = STATE(1311), + [sym_array_pattern] = STATE(1311), + [sym__destructuring_pattern] = STATE(1311), + [aux_sym_object_repeat1] = STATE(1418), + [aux_sym_object_pattern_repeat1] = STATE(1452), + [sym_identifier] = ACTIONS(1100), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_RBRACE] = ACTIONS(216), + [anon_sym_of] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(165), + [anon_sym_COLON] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(186), + [anon_sym_LBRACK] = ACTIONS(1106), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(169), + [anon_sym_EQ_GT] = ACTIONS(200), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(169), + [sym__automatic_semicolon] = ACTIONS(169), + [sym__ternary_qmark] = ACTIONS(169), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(381)] = { + [sym_catch_clause] = STATE(389), + [sym_finally_clause] = STATE(435), + [ts_builtin_sym_end] = ACTIONS(1126), + [sym_identifier] = ACTIONS(1128), + [anon_sym_export] = ACTIONS(1128), + [anon_sym_default] = ACTIONS(1128), + [anon_sym_LBRACE] = ACTIONS(1126), + [anon_sym_RBRACE] = ACTIONS(1126), + [anon_sym_import] = ACTIONS(1128), + [anon_sym_with] = ACTIONS(1128), + [anon_sym_var] = ACTIONS(1128), + [anon_sym_let] = ACTIONS(1128), + [anon_sym_const] = ACTIONS(1128), + [anon_sym_using] = ACTIONS(1128), + [anon_sym_await] = ACTIONS(1128), + [anon_sym_else] = ACTIONS(1128), + [anon_sym_if] = ACTIONS(1128), + [anon_sym_switch] = ACTIONS(1128), + [anon_sym_for] = ACTIONS(1128), + [anon_sym_LPAREN] = ACTIONS(1126), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_while] = ACTIONS(1128), + [anon_sym_do] = ACTIONS(1128), + [anon_sym_try] = ACTIONS(1128), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1128), + [anon_sym_debugger] = ACTIONS(1128), + [anon_sym_return] = ACTIONS(1128), + [anon_sym_throw] = ACTIONS(1128), + [anon_sym_case] = ACTIONS(1128), + [anon_sym_catch] = ACTIONS(1130), + [anon_sym_finally] = ACTIONS(1132), + [anon_sym_yield] = ACTIONS(1128), + [anon_sym_LBRACK] = ACTIONS(1126), + [anon_sym_LT] = ACTIONS(1126), + [anon_sym_DQUOTE] = ACTIONS(1126), + [anon_sym_SQUOTE] = ACTIONS(1126), + [anon_sym_class] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(1128), + [anon_sym_function] = ACTIONS(1128), + [anon_sym_new] = ACTIONS(1128), + [anon_sym_PLUS] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1128), + [anon_sym_SLASH] = ACTIONS(1128), + [anon_sym_BANG] = ACTIONS(1126), + [anon_sym_TILDE] = ACTIONS(1126), + [anon_sym_typeof] = ACTIONS(1128), + [anon_sym_void] = ACTIONS(1128), + [anon_sym_delete] = ACTIONS(1128), + [anon_sym_PLUS_PLUS] = ACTIONS(1126), + [anon_sym_DASH_DASH] = ACTIONS(1126), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(1126), + [sym_number] = ACTIONS(1126), + [sym_private_property_identifier] = ACTIONS(1126), + [sym_this] = ACTIONS(1128), + [sym_super] = ACTIONS(1128), + [sym_true] = ACTIONS(1128), + [sym_false] = ACTIONS(1128), + [sym_null] = ACTIONS(1128), + [sym_undefined] = ACTIONS(1128), + [anon_sym_AT] = ACTIONS(1126), + [anon_sym_static] = ACTIONS(1128), + [anon_sym_get] = ACTIONS(1128), + [anon_sym_set] = ACTIONS(1128), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(382)] = { + [sym_formal_parameters] = STATE(1824), + [sym_identifier] = ACTIONS(1122), + [anon_sym_export] = ACTIONS(1124), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_COMMA] = ACTIONS(496), + [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_let] = ACTIONS(1124), + [anon_sym_await] = ACTIONS(1124), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_RPAREN] = ACTIONS(496), + [anon_sym_in] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(440), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_RBRACK] = ACTIONS(496), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(169), + [anon_sym_async] = ACTIONS(1124), + [anon_sym_function] = ACTIONS(1098), + [anon_sym_EQ_GT] = ACTIONS(498), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(169), + [anon_sym_static] = ACTIONS(1124), + [anon_sym_get] = ACTIONS(1124), + [anon_sym_set] = ACTIONS(1124), + [sym__ternary_qmark] = ACTIONS(169), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(383)] = { + [sym_formal_parameters] = STATE(1859), + [sym_identifier] = ACTIONS(1091), + [anon_sym_export] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_COMMA] = ACTIONS(169), + [anon_sym_let] = ACTIONS(1093), + [anon_sym_await] = ACTIONS(1093), + [anon_sym_of] = ACTIONS(504), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_in] = ACTIONS(506), + [anon_sym_EQ] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(169), + [anon_sym_async] = ACTIONS(1093), + [anon_sym_function] = ACTIONS(1098), + [anon_sym_EQ_GT] = ACTIONS(402), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(169), + [anon_sym_static] = ACTIONS(1093), + [anon_sym_get] = ACTIONS(1093), + [anon_sym_set] = ACTIONS(1093), + [sym__ternary_qmark] = ACTIONS(169), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(384)] = { + [ts_builtin_sym_end] = ACTIONS(700), + [sym_identifier] = ACTIONS(702), + [anon_sym_export] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_COMMA] = ACTIONS(700), + [anon_sym_RBRACE] = ACTIONS(700), + [anon_sym_import] = ACTIONS(702), + [anon_sym_with] = ACTIONS(702), + [anon_sym_var] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_using] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_else] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_switch] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_LPAREN] = ACTIONS(700), + [anon_sym_SEMI] = ACTIONS(700), + [anon_sym_while] = ACTIONS(702), + [anon_sym_do] = ACTIONS(702), + [anon_sym_try] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_debugger] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_throw] = ACTIONS(702), + [anon_sym_case] = ACTIONS(702), + [anon_sym_catch] = ACTIONS(702), + [anon_sym_finally] = ACTIONS(702), + [anon_sym_yield] = ACTIONS(702), + [anon_sym_LBRACK] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_DQUOTE] = ACTIONS(700), + [anon_sym_SQUOTE] = ACTIONS(700), + [anon_sym_class] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_function] = ACTIONS(702), + [anon_sym_new] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(702), + [anon_sym_SLASH] = ACTIONS(702), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_TILDE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(702), + [anon_sym_void] = ACTIONS(702), + [anon_sym_delete] = ACTIONS(702), + [anon_sym_PLUS_PLUS] = ACTIONS(700), + [anon_sym_DASH_DASH] = ACTIONS(700), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(934), - [sym_number] = ACTIONS(934), - [sym_private_property_identifier] = ACTIONS(934), - [sym_this] = ACTIONS(936), - [sym_super] = ACTIONS(936), - [sym_true] = ACTIONS(936), - [sym_false] = ACTIONS(936), - [sym_null] = ACTIONS(936), - [sym_undefined] = ACTIONS(936), - [anon_sym_AT] = ACTIONS(934), - [anon_sym_static] = ACTIONS(936), - [anon_sym_get] = ACTIONS(936), - [anon_sym_set] = ACTIONS(936), + [anon_sym_BQUOTE] = ACTIONS(700), + [sym_number] = ACTIONS(700), + [sym_private_property_identifier] = ACTIONS(700), + [sym_this] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_true] = ACTIONS(702), + [sym_false] = ACTIONS(702), + [sym_null] = ACTIONS(702), + [sym_undefined] = ACTIONS(702), + [anon_sym_AT] = ACTIONS(700), + [anon_sym_static] = ACTIONS(702), + [anon_sym_get] = ACTIONS(702), + [anon_sym_set] = ACTIONS(702), [sym_html_comment] = ACTIONS(5), }, - [325] = { - [sym_formal_parameters] = STATE(1619), - [sym_identifier] = ACTIONS(923), - [anon_sym_export] = ACTIONS(925), - [anon_sym_STAR] = ACTIONS(775), - [anon_sym_COMMA] = ACTIONS(942), - [anon_sym_RBRACE] = ACTIONS(942), - [anon_sym_let] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_RPAREN] = ACTIONS(942), - [anon_sym_in] = ACTIONS(775), - [anon_sym_EQ] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_RBRACK] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(775), - [anon_sym_GT] = ACTIONS(775), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_async] = ACTIONS(925), - [anon_sym_function] = ACTIONS(887), - [anon_sym_EQ_GT] = ACTIONS(932), - [sym_optional_chain] = ACTIONS(764), - [anon_sym_PLUS_EQ] = ACTIONS(790), - [anon_sym_DASH_EQ] = ACTIONS(790), - [anon_sym_STAR_EQ] = ACTIONS(790), - [anon_sym_SLASH_EQ] = ACTIONS(790), - [anon_sym_PERCENT_EQ] = ACTIONS(790), - [anon_sym_CARET_EQ] = ACTIONS(790), - [anon_sym_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_EQ] = ACTIONS(790), - [anon_sym_GT_GT_EQ] = ACTIONS(790), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(790), - [anon_sym_LT_LT_EQ] = ACTIONS(790), - [anon_sym_STAR_STAR_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP_EQ] = ACTIONS(790), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(790), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(775), - [anon_sym_PIPE_PIPE] = ACTIONS(775), - [anon_sym_GT_GT] = ACTIONS(775), - [anon_sym_GT_GT_GT] = ACTIONS(775), - [anon_sym_LT_LT] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(775), - [anon_sym_CARET] = ACTIONS(775), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_PLUS] = ACTIONS(775), - [anon_sym_DASH] = ACTIONS(775), - [anon_sym_SLASH] = ACTIONS(775), - [anon_sym_PERCENT] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(775), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(775), - [anon_sym_EQ_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(775), - [anon_sym_BANG_EQ_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_QMARK_QMARK] = ACTIONS(775), - [anon_sym_instanceof] = ACTIONS(775), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), + [STATE(385)] = { + [ts_builtin_sym_end] = ACTIONS(694), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(696), + [anon_sym_default] = ACTIONS(696), + [anon_sym_LBRACE] = ACTIONS(694), + [anon_sym_COMMA] = ACTIONS(694), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_import] = ACTIONS(696), + [anon_sym_with] = ACTIONS(696), + [anon_sym_var] = ACTIONS(696), + [anon_sym_let] = ACTIONS(696), + [anon_sym_const] = ACTIONS(696), + [anon_sym_using] = ACTIONS(696), + [anon_sym_await] = ACTIONS(696), + [anon_sym_else] = ACTIONS(696), + [anon_sym_if] = ACTIONS(696), + [anon_sym_switch] = ACTIONS(696), + [anon_sym_for] = ACTIONS(696), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_while] = ACTIONS(696), + [anon_sym_do] = ACTIONS(696), + [anon_sym_try] = ACTIONS(696), + [anon_sym_break] = ACTIONS(696), + [anon_sym_continue] = ACTIONS(696), + [anon_sym_debugger] = ACTIONS(696), + [anon_sym_return] = ACTIONS(696), + [anon_sym_throw] = ACTIONS(696), + [anon_sym_case] = ACTIONS(696), + [anon_sym_catch] = ACTIONS(696), + [anon_sym_finally] = ACTIONS(696), + [anon_sym_yield] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_DQUOTE] = ACTIONS(694), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_class] = ACTIONS(696), + [anon_sym_async] = ACTIONS(696), + [anon_sym_function] = ACTIONS(696), + [anon_sym_new] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), + [anon_sym_SLASH] = ACTIONS(696), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_TILDE] = ACTIONS(694), + [anon_sym_typeof] = ACTIONS(696), + [anon_sym_void] = ACTIONS(696), + [anon_sym_delete] = ACTIONS(696), + [anon_sym_PLUS_PLUS] = ACTIONS(694), + [anon_sym_DASH_DASH] = ACTIONS(694), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(694), + [sym_number] = ACTIONS(694), + [sym_private_property_identifier] = ACTIONS(694), + [sym_this] = ACTIONS(696), + [sym_super] = ACTIONS(696), + [sym_true] = ACTIONS(696), + [sym_false] = ACTIONS(696), + [sym_null] = ACTIONS(696), + [sym_undefined] = ACTIONS(696), + [anon_sym_AT] = ACTIONS(694), + [anon_sym_static] = ACTIONS(696), + [anon_sym_get] = ACTIONS(696), + [anon_sym_set] = ACTIONS(696), + [sym_html_comment] = ACTIONS(5), + }, + [STATE(386)] = { + [sym_formal_parameters] = STATE(1859), + [sym_identifier] = ACTIONS(1091), + [anon_sym_export] = ACTIONS(1093), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_COMMA] = ACTIONS(577), + [anon_sym_RBRACE] = ACTIONS(577), + [anon_sym_let] = ACTIONS(1093), + [anon_sym_await] = ACTIONS(1093), + [anon_sym_LPAREN] = ACTIONS(1095), + [anon_sym_in] = ACTIONS(165), + [anon_sym_EQ] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_RBRACK] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(165), + [anon_sym_DOT] = ACTIONS(169), + [anon_sym_async] = ACTIONS(1093), + [anon_sym_function] = ACTIONS(1098), + [anon_sym_EQ_GT] = ACTIONS(402), + [sym_optional_chain] = ACTIONS(169), + [anon_sym_PLUS_EQ] = ACTIONS(202), + [anon_sym_DASH_EQ] = ACTIONS(202), + [anon_sym_STAR_EQ] = ACTIONS(202), + [anon_sym_SLASH_EQ] = ACTIONS(202), + [anon_sym_PERCENT_EQ] = ACTIONS(202), + [anon_sym_CARET_EQ] = ACTIONS(202), + [anon_sym_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_EQ] = ACTIONS(202), + [anon_sym_GT_GT_EQ] = ACTIONS(202), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(202), + [anon_sym_LT_LT_EQ] = ACTIONS(202), + [anon_sym_STAR_STAR_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP_EQ] = ACTIONS(202), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(202), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(202), + [anon_sym_AMP_AMP] = ACTIONS(165), + [anon_sym_PIPE_PIPE] = ACTIONS(165), + [anon_sym_GT_GT] = ACTIONS(165), + [anon_sym_GT_GT_GT] = ACTIONS(165), + [anon_sym_LT_LT] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(165), + [anon_sym_CARET] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(165), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_SLASH] = ACTIONS(165), + [anon_sym_PERCENT] = ACTIONS(165), + [anon_sym_STAR_STAR] = ACTIONS(165), + [anon_sym_LT_EQ] = ACTIONS(169), + [anon_sym_EQ_EQ] = ACTIONS(165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(169), + [anon_sym_BANG_EQ] = ACTIONS(165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(169), + [anon_sym_GT_EQ] = ACTIONS(169), + [anon_sym_QMARK_QMARK] = ACTIONS(165), + [anon_sym_instanceof] = ACTIONS(165), + [anon_sym_PLUS_PLUS] = ACTIONS(169), + [anon_sym_DASH_DASH] = ACTIONS(169), [sym_comment] = ACTIONS(5), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_static] = ACTIONS(925), - [anon_sym_get] = ACTIONS(925), - [anon_sym_set] = ACTIONS(925), - [sym__ternary_qmark] = ACTIONS(764), + [anon_sym_BQUOTE] = ACTIONS(169), + [anon_sym_static] = ACTIONS(1093), + [anon_sym_get] = ACTIONS(1093), + [anon_sym_set] = ACTIONS(1093), + [sym__ternary_qmark] = ACTIONS(169), [sym_html_comment] = ACTIONS(5), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(499), 18, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(501), 44, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_catch, - anon_sym_finally, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [71] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(519), 18, - ts_builtin_sym_end, - anon_sym_LBRACE, + [0] = 13, + ACTIONS(402), 1, + anon_sym_EQ_GT, + ACTIONS(509), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(521), 44, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_catch, - anon_sym_finally, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [142] = 13, - ACTIONS(878), 1, + ACTIONS(514), 1, + anon_sym_RBRACK, + ACTIONS(517), 1, + anon_sym_EQ, + ACTIONS(1091), 1, sym_identifier, - ACTIONS(882), 1, + ACTIONS(1095), 1, anon_sym_LPAREN, - ACTIONS(885), 1, - anon_sym_EQ, - ACTIONS(887), 1, + ACTIONS(1098), 1, anon_sym_function, - ACTIONS(889), 1, - anon_sym_EQ_GT, - ACTIONS(944), 1, - anon_sym_in, - ACTIONS(947), 1, - anon_sym_of, - STATE(1707), 1, + STATE(1859), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(880), 6, + ACTIONS(1093), 7, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(764), 13, + ACTIONS(169), 11, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -37071,7 +43726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 15, + ACTIONS(202), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -37087,8 +43742,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(775), 20, + ACTIONS(165), 21, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -37108,35 +43764,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [233] = 12, - ACTIONS(878), 1, - sym_identifier, - ACTIONS(882), 1, - anon_sym_LPAREN, - ACTIONS(885), 1, + [91] = 11, + ACTIONS(200), 1, + anon_sym_EQ_GT, + ACTIONS(490), 1, anon_sym_EQ, - ACTIONS(887), 1, + ACTIONS(1095), 1, + anon_sym_LPAREN, + ACTIONS(1110), 1, + sym_identifier, + ACTIONS(1120), 1, anon_sym_function, - ACTIONS(889), 1, - anon_sym_EQ_GT, - STATE(1707), 1, + STATE(1834), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(949), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(880), 6, + ACTIONS(1112), 7, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(764), 11, + ACTIONS(169), 13, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -37147,7 +43802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 15, + ACTIONS(202), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -37163,7 +43818,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(775), 21, + ACTIONS(165), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37185,35 +43840,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [322] = 13, - ACTIONS(878), 1, - sym_identifier, - ACTIONS(882), 1, + [178] = 5, + ACTIONS(1132), 1, + anon_sym_finally, + STATE(460), 1, + sym_finally_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1134), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(887), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1136), 43, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_using, + anon_sym_await, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_class, + anon_sym_async, anon_sym_function, - ACTIONS(889), 1, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [253] = 11, + ACTIONS(200), 1, anon_sym_EQ_GT, - ACTIONS(901), 1, - anon_sym_RBRACK, - ACTIONS(904), 1, + ACTIONS(490), 1, anon_sym_EQ, - ACTIONS(927), 1, - anon_sym_COMMA, - STATE(1707), 1, + ACTIONS(1079), 1, + anon_sym_function, + ACTIONS(1095), 1, + anon_sym_LPAREN, + ACTIONS(1110), 1, + sym_identifier, + STATE(1834), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(880), 6, + ACTIONS(1112), 7, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(764), 11, + ACTIONS(169), 13, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -37224,7 +43948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 15, + ACTIONS(202), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -37240,7 +43964,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(775), 21, + ACTIONS(165), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37262,165 +43986,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [412] = 11, - ACTIONS(882), 1, - anon_sym_LPAREN, - ACTIONS(887), 1, - anon_sym_function, - ACTIONS(891), 1, - anon_sym_EQ, - ACTIONS(923), 1, - sym_identifier, - ACTIONS(932), 1, - anon_sym_EQ_GT, - STATE(1619), 1, - sym_formal_parameters, + [340] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(925), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(764), 13, - sym__ternary_qmark, + ACTIONS(694), 18, + sym__automatic_semicolon, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(696), 43, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_using, + anon_sym_await, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [498] = 11, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(858), 1, - anon_sym_function, - ACTIONS(866), 1, - anon_sym_EQ, - ACTIONS(882), 1, - anon_sym_LPAREN, - ACTIONS(907), 1, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, sym_identifier, - STATE(1633), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(909), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(764), 13, + [410] = 4, + ACTIONS(730), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [584] = 5, - ACTIONS(940), 1, - anon_sym_finally, - STATE(375), 1, - sym_finally_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(952), 17, + ACTIONS(722), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37438,7 +44077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(954), 42, + ACTIONS(724), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37446,11 +44085,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -37481,33 +44121,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [658] = 11, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(866), 1, + [482] = 11, + ACTIONS(440), 1, anon_sym_EQ, - ACTIONS(882), 1, + ACTIONS(628), 1, + anon_sym_EQ_GT, + ACTIONS(1095), 1, anon_sym_LPAREN, - ACTIONS(907), 1, - sym_identifier, - ACTIONS(911), 1, + ACTIONS(1098), 1, anon_sym_function, - STATE(1633), 1, + ACTIONS(1138), 1, + sym_identifier, + STATE(1821), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(909), 6, + ACTIONS(1140), 7, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(764), 13, - sym__automatic_semicolon, + ACTIONS(169), 12, sym__ternary_qmark, - anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -37518,7 +44158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 15, + ACTIONS(202), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -37534,7 +44174,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(775), 21, + ACTIONS(165), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37556,13 +44196,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [744] = 4, - ACTIONS(956), 1, + [568] = 4, + ACTIONS(1142), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(503), 17, + ACTIONS(708), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37580,7 +44220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(505), 42, + ACTIONS(710), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37588,11 +44228,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -37623,18 +44264,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [815] = 4, - ACTIONS(958), 1, - sym__automatic_semicolon, + [640] = 4, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(499), 17, + ACTIONS(1148), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1144), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LT, anon_sym_DQUOTE, @@ -37647,7 +44288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(501), 42, + ACTIONS(1146), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37655,11 +44296,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -37690,12 +44332,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [886] = 3, + [712] = 13, + ACTIONS(200), 1, + anon_sym_EQ_GT, + ACTIONS(490), 1, + anon_sym_EQ, + ACTIONS(494), 1, + anon_sym_COLON, + ACTIONS(1100), 1, + sym_identifier, + ACTIONS(1102), 1, + anon_sym_LBRACE, + ACTIONS(1104), 1, + anon_sym_of, + ACTIONS(1106), 1, + anon_sym_LBRACK, + STATE(1385), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1311), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(169), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(202), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(165), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [802] = 13, + ACTIONS(200), 1, + anon_sym_EQ_GT, + ACTIONS(488), 1, + anon_sym_COLON, + ACTIONS(490), 1, + anon_sym_EQ, + ACTIONS(1100), 1, + sym_identifier, + ACTIONS(1102), 1, + anon_sym_LBRACE, + ACTIONS(1104), 1, + anon_sym_of, + ACTIONS(1106), 1, + anon_sym_LBRACK, + STATE(1385), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(499), 18, + STATE(1311), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(169), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(202), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(165), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [892] = 4, + ACTIONS(780), 1, sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(772), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37713,7 +44510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(501), 42, + ACTIONS(774), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37721,11 +44518,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -37756,13 +44554,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [955] = 4, - ACTIONS(539), 1, - sym__automatic_semicolon, + [964] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(531), 17, + ACTIONS(704), 18, + sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37780,7 +44577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(533), 42, + ACTIONS(706), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37788,11 +44585,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -37823,17 +44621,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1026] = 3, + [1034] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(960), 18, + ACTIONS(700), 18, + sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LT, anon_sym_DQUOTE, @@ -37846,7 +44644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(962), 42, + ACTIONS(702), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37854,11 +44652,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -37889,12 +44688,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1095] = 3, + [1104] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(519), 18, - sym__automatic_semicolon, + ACTIONS(1150), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37912,7 +44710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(521), 42, + ACTIONS(1152), 44, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37920,11 +44718,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -37934,6 +44733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, + anon_sym_finally, anon_sym_yield, anon_sym_class, anon_sym_async, @@ -37955,13 +44755,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1164] = 4, - ACTIONS(549), 1, - sym__automatic_semicolon, + [1174] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(541), 17, + ACTIONS(690), 18, + sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -37979,7 +44778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(543), 42, + ACTIONS(692), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -37987,11 +44786,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -38022,11 +44822,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1235] = 3, + [1244] = 4, + ACTIONS(740), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(964), 17, + ACTIONS(732), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38044,7 +44846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(966), 43, + ACTIONS(734), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38052,11 +44854,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -38066,7 +44869,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, - anon_sym_finally, anon_sym_yield, anon_sym_class, anon_sym_async, @@ -38088,166 +44890,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1304] = 12, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(866), 1, - anon_sym_EQ, - ACTIONS(870), 1, - anon_sym_COLON, - ACTIONS(895), 1, - sym_identifier, - ACTIONS(897), 1, - anon_sym_LBRACE, - ACTIONS(899), 1, - anon_sym_LBRACK, - STATE(1260), 1, - sym_variable_declarator, + [1316] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1191), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(764), 14, + ACTIONS(1154), 18, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [1391] = 13, - ACTIONS(882), 1, - anon_sym_LPAREN, - ACTIONS(887), 1, - anon_sym_function, - ACTIONS(891), 1, - anon_sym_EQ, - ACTIONS(923), 1, - sym_identifier, - ACTIONS(932), 1, - anon_sym_EQ_GT, - ACTIONS(944), 1, - anon_sym_in, - ACTIONS(947), 1, - anon_sym_of, - STATE(1619), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(925), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(764), 11, - sym__ternary_qmark, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 20, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [1480] = 5, - ACTIONS(972), 1, - anon_sym_else, - STATE(404), 1, - sym_else_clause, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(968), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38265,7 +44913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(970), 41, + ACTIONS(1156), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38273,10 +44921,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, + anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -38307,11 +44957,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1553] = 3, + [1386] = 4, + ACTIONS(770), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(974), 17, + ACTIONS(762), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38329,7 +44981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(976), 43, + ACTIONS(764), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38337,11 +44989,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -38351,7 +45004,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, - anon_sym_finally, anon_sym_yield, anon_sym_class, anon_sym_async, @@ -38373,13 +45025,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1622] = 4, - ACTIONS(579), 1, - sym__automatic_semicolon, + [1458] = 11, + ACTIONS(624), 1, + anon_sym_EQ, + ACTIONS(628), 1, + anon_sym_EQ_GT, + ACTIONS(1095), 1, + anon_sym_LPAREN, + ACTIONS(1098), 1, + anon_sym_function, + ACTIONS(1138), 1, + sym_identifier, + STATE(1821), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(571), 17, + ACTIONS(1140), 7, + anon_sym_export, + anon_sym_let, + anon_sym_await, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(169), 12, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(202), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(165), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [1544] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1158), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38397,7 +45122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(573), 42, + ACTIONS(1160), 44, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38405,11 +45130,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -38419,6 +45145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, + anon_sym_finally, anon_sym_yield, anon_sym_class, anon_sym_async, @@ -38440,12 +45167,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1693] = 3, + [1614] = 4, + ACTIONS(760), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(523), 18, - sym__automatic_semicolon, + ACTIONS(752), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38463,7 +45191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(525), 42, + ACTIONS(754), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38471,11 +45199,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -38506,13 +45235,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1762] = 4, - ACTIONS(589), 1, + [1686] = 4, + ACTIONS(790), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(581), 17, + ACTIONS(782), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38530,7 +45259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(583), 42, + ACTIONS(784), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38538,11 +45267,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -38573,13 +45303,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1833] = 4, - ACTIONS(599), 1, - sym__automatic_semicolon, + [1758] = 11, + ACTIONS(440), 1, + anon_sym_EQ, + ACTIONS(498), 1, + anon_sym_EQ_GT, + ACTIONS(1095), 1, + anon_sym_LPAREN, + ACTIONS(1098), 1, + anon_sym_function, + ACTIONS(1122), 1, + sym_identifier, + STATE(1824), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1124), 7, + anon_sym_export, + anon_sym_let, + anon_sym_await, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(169), 12, + sym__ternary_qmark, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(202), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(165), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [1844] = 5, + ACTIONS(1166), 1, + anon_sym_else, + STATE(428), 1, + sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(591), 17, + ACTIONS(1162), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38597,7 +45404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(593), 42, + ACTIONS(1164), 42, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38605,11 +45412,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, + anon_sym_using, + anon_sym_await, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -38640,101 +45447,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1904] = 4, - ACTIONS(609), 1, - sym__automatic_semicolon, + [1918] = 11, + ACTIONS(580), 1, + anon_sym_EQ_GT, + ACTIONS(590), 1, + anon_sym_EQ, + ACTIONS(1095), 1, + anon_sym_LPAREN, + ACTIONS(1098), 1, + anon_sym_function, + ACTIONS(1168), 1, + sym_identifier, + STATE(1782), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(601), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(603), 42, + ACTIONS(1170), 7, anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [1975] = 12, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(864), 1, - anon_sym_COLON, - ACTIONS(866), 1, - anon_sym_EQ, - ACTIONS(895), 1, - sym_identifier, - ACTIONS(897), 1, - anon_sym_LBRACE, - ACTIONS(899), 1, - anon_sym_LBRACK, - STATE(1260), 1, - sym_variable_declarator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1191), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(764), 14, - sym__automatic_semicolon, + ACTIONS(169), 11, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_LT_EQ, @@ -38744,7 +45483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 15, + ACTIONS(202), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -38760,8 +45499,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(775), 21, + ACTIONS(165), 22, anon_sym_STAR, + anon_sym_of, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -38782,13 +45522,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [2062] = 4, - ACTIONS(559), 1, + [2004] = 4, + ACTIONS(800), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(551), 17, + ACTIONS(792), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38806,7 +45546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(553), 42, + ACTIONS(794), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38814,11 +45554,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -38849,13 +45590,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2133] = 4, - ACTIONS(569), 1, + [2076] = 11, + ACTIONS(440), 1, + anon_sym_EQ, + ACTIONS(580), 1, + anon_sym_EQ_GT, + ACTIONS(1095), 1, + anon_sym_LPAREN, + ACTIONS(1098), 1, + anon_sym_function, + ACTIONS(1168), 1, + sym_identifier, + STATE(1782), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1170), 7, + anon_sym_export, + anon_sym_let, + anon_sym_await, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(169), 11, + sym__ternary_qmark, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(202), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(165), 22, + anon_sym_STAR, + anon_sym_of, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [2162] = 4, + ACTIONS(750), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(561), 17, + ACTIONS(742), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38873,7 +45689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(563), 42, + ACTIONS(744), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38881,11 +45697,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -38916,12 +45733,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2204] = 3, + [2234] = 4, + ACTIONS(1172), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(527), 18, - sym__automatic_semicolon, + ACTIONS(694), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -38939,7 +45757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(529), 42, + ACTIONS(696), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -38947,11 +45765,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -38982,104 +45801,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2273] = 11, - ACTIONS(882), 1, - anon_sym_LPAREN, - ACTIONS(887), 1, - anon_sym_function, - ACTIONS(978), 1, - sym_identifier, - ACTIONS(982), 1, + [2306] = 13, + ACTIONS(440), 1, anon_sym_EQ, - ACTIONS(984), 1, + ACTIONS(498), 1, anon_sym_EQ_GT, - STATE(1704), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(980), 6, - anon_sym_export, - anon_sym_let, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(764), 11, - sym__ternary_qmark, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 22, - anon_sym_STAR, - anon_sym_in, + ACTIONS(504), 1, anon_sym_of, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [2358] = 11, - ACTIONS(882), 1, + ACTIONS(506), 1, + anon_sym_in, + ACTIONS(1095), 1, anon_sym_LPAREN, - ACTIONS(887), 1, + ACTIONS(1098), 1, anon_sym_function, - ACTIONS(891), 1, - anon_sym_EQ, - ACTIONS(978), 1, + ACTIONS(1122), 1, sym_identifier, - ACTIONS(984), 1, - anon_sym_EQ_GT, - STATE(1704), 1, + STATE(1824), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(980), 6, + ACTIONS(1124), 7, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(764), 11, + ACTIONS(169), 11, sym__ternary_qmark, anon_sym_LBRACK, anon_sym_DOT, @@ -39091,7 +45841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 15, + ACTIONS(202), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -39107,10 +45857,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(775), 22, + ACTIONS(165), 20, anon_sym_STAR, - anon_sym_in, - anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -39130,18 +45878,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [2443] = 4, + [2396] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(990), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(986), 16, + ACTIONS(1174), 18, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_LT, anon_sym_DQUOTE, @@ -39154,7 +45901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(988), 42, + ACTIONS(1176), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39162,11 +45909,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -39197,12 +45945,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2514] = 3, + [2466] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(992), 18, - sym__automatic_semicolon, + ACTIONS(1178), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39220,7 +45967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(994), 42, + ACTIONS(1180), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39228,11 +45975,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -39263,11 +46011,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2583] = 3, + [2535] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(996), 17, + ACTIONS(1182), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39285,7 +46033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(998), 42, + ACTIONS(1184), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39293,11 +46041,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -39328,11 +46077,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2651] = 3, + [2604] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1000), 17, + ACTIONS(1186), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39350,7 +46099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1002), 42, + ACTIONS(1188), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39358,11 +46107,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -39393,11 +46143,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2719] = 3, + [2673] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1004), 17, + ACTIONS(1186), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39415,7 +46165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1006), 42, + ACTIONS(1188), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39423,11 +46173,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -39458,11 +46209,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2787] = 3, + [2742] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1008), 17, + ACTIONS(1190), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39480,7 +46231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1010), 42, + ACTIONS(1192), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39488,11 +46239,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -39523,11 +46275,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2855] = 3, + [2811] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1012), 17, + ACTIONS(1194), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39545,7 +46297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1014), 42, + ACTIONS(1196), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39553,11 +46305,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -39588,11 +46341,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2923] = 3, + [2880] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1016), 17, + ACTIONS(1198), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39610,7 +46363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1018), 42, + ACTIONS(1200), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39618,11 +46371,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -39653,11 +46407,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2991] = 3, + [2949] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1020), 17, + ACTIONS(1202), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39675,7 +46429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1022), 42, + ACTIONS(1204), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39683,11 +46437,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -39718,11 +46473,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3059] = 3, + [3018] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1024), 17, + ACTIONS(1206), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39740,7 +46495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1026), 42, + ACTIONS(1208), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39748,11 +46503,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -39783,11 +46539,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3127] = 3, + [3087] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1028), 17, + ACTIONS(1210), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39805,7 +46561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1030), 42, + ACTIONS(1212), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39813,11 +46569,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -39848,11 +46605,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3195] = 3, + [3156] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1032), 17, + ACTIONS(1214), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39870,7 +46627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1034), 42, + ACTIONS(1216), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39878,11 +46635,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -39913,11 +46671,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3263] = 3, + [3225] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1036), 17, + ACTIONS(1218), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -39935,7 +46693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1038), 42, + ACTIONS(1220), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -39943,11 +46701,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -39978,11 +46737,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3331] = 3, + [3294] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1040), 17, + ACTIONS(1222), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40000,7 +46759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1042), 42, + ACTIONS(1224), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40008,11 +46767,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -40043,11 +46803,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3399] = 3, + [3363] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1044), 17, + ACTIONS(1226), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40065,7 +46825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1046), 42, + ACTIONS(1228), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40073,11 +46833,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -40108,11 +46869,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3467] = 3, + [3432] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1048), 17, + ACTIONS(1230), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40130,7 +46891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1050), 42, + ACTIONS(1232), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40138,11 +46899,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -40173,11 +46935,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3535] = 3, + [3501] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1052), 17, + ACTIONS(1234), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40195,7 +46957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1054), 42, + ACTIONS(1236), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40203,11 +46965,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -40238,11 +47001,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3603] = 3, + [3570] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1056), 17, + ACTIONS(1238), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40260,7 +47023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1058), 42, + ACTIONS(1240), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40268,11 +47031,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -40303,11 +47067,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3671] = 3, + [3639] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1060), 17, + ACTIONS(1242), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40325,7 +47089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1062), 42, + ACTIONS(1244), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40333,11 +47097,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -40368,11 +47133,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3739] = 3, + [3708] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1064), 17, + ACTIONS(1246), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40390,7 +47155,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1066), 42, + ACTIONS(1248), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40398,11 +47163,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -40433,11 +47199,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3807] = 3, + [3777] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1068), 17, + ACTIONS(1250), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40455,7 +47221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1070), 42, + ACTIONS(1252), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40463,11 +47229,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -40498,11 +47265,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3875] = 3, + [3846] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1072), 17, + ACTIONS(1254), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40520,7 +47287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1074), 42, + ACTIONS(1256), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40528,11 +47295,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -40563,11 +47331,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3943] = 3, + [3915] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1076), 17, + ACTIONS(1258), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40585,7 +47353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1078), 42, + ACTIONS(1260), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40593,11 +47361,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -40628,11 +47397,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4011] = 3, + [3984] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1080), 17, + ACTIONS(1258), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40650,7 +47419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1082), 42, + ACTIONS(1260), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40658,11 +47427,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -40693,11 +47463,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4079] = 3, + [4053] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1076), 17, + ACTIONS(1262), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40715,7 +47485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1078), 42, + ACTIONS(1264), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40723,11 +47493,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -40758,11 +47529,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4147] = 3, + [4122] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1084), 17, + ACTIONS(1266), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40780,7 +47551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1086), 42, + ACTIONS(1268), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40788,11 +47559,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -40823,11 +47595,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4215] = 3, + [4191] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1088), 17, + ACTIONS(1270), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40845,7 +47617,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1090), 42, + ACTIONS(1272), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40853,11 +47625,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -40888,11 +47661,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4283] = 3, + [4260] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1092), 17, + ACTIONS(1274), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40910,7 +47683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1094), 42, + ACTIONS(1276), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40918,11 +47691,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -40953,11 +47727,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4351] = 3, + [4329] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1096), 17, + ACTIONS(1206), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -40975,7 +47749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1098), 42, + ACTIONS(1208), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -40983,11 +47757,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -41018,11 +47793,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4419] = 3, + [4398] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1076), 17, + ACTIONS(1278), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41040,7 +47815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1078), 42, + ACTIONS(1280), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41048,11 +47823,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -41083,11 +47859,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4487] = 3, + [4467] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1100), 17, + ACTIONS(1282), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41105,7 +47881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1102), 42, + ACTIONS(1284), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41113,11 +47889,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -41148,11 +47925,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4555] = 3, + [4536] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1076), 17, + ACTIONS(1206), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41170,7 +47947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1078), 42, + ACTIONS(1208), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41178,11 +47955,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -41213,11 +47991,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4623] = 3, + [4605] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1104), 17, + ACTIONS(1286), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41235,7 +48013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1106), 42, + ACTIONS(1288), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41243,11 +48021,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -41278,11 +48057,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4691] = 3, + [4674] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1108), 17, + ACTIONS(1290), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41300,7 +48079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1110), 42, + ACTIONS(1292), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41308,11 +48087,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -41343,11 +48123,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4759] = 3, + [4743] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1076), 17, + ACTIONS(1294), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41365,7 +48145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1078), 42, + ACTIONS(1296), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41373,11 +48153,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -41408,11 +48189,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4827] = 3, + [4812] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1112), 17, + ACTIONS(1298), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41430,7 +48211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1114), 42, + ACTIONS(1300), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41438,11 +48219,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -41473,11 +48255,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4895] = 3, + [4881] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1076), 17, + ACTIONS(1298), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41495,7 +48277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1078), 42, + ACTIONS(1300), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41503,11 +48285,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -41538,11 +48321,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4963] = 3, + [4950] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1116), 17, + ACTIONS(1302), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41560,7 +48343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1118), 42, + ACTIONS(1304), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41568,11 +48351,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -41603,11 +48387,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5031] = 3, + [5019] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1116), 17, + ACTIONS(1306), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41625,7 +48409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1118), 42, + ACTIONS(1308), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41633,11 +48417,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -41668,11 +48453,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5099] = 3, + [5088] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1120), 17, + ACTIONS(1310), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41690,7 +48475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1122), 42, + ACTIONS(1312), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41698,11 +48483,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -41733,11 +48519,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5167] = 3, + [5157] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1124), 17, + ACTIONS(1314), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41755,7 +48541,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1126), 42, + ACTIONS(1316), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41763,11 +48549,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -41798,11 +48585,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5235] = 3, + [5226] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1128), 17, + ACTIONS(1318), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41820,7 +48607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1130), 42, + ACTIONS(1320), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41828,11 +48615,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -41863,11 +48651,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5303] = 3, + [5295] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1132), 17, + ACTIONS(1322), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41885,7 +48673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1134), 42, + ACTIONS(1324), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41893,11 +48681,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -41928,11 +48717,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5371] = 3, + [5364] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1136), 17, + ACTIONS(1326), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -41950,7 +48739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1138), 42, + ACTIONS(1328), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -41958,11 +48747,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -41993,11 +48783,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5439] = 3, + [5433] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1140), 17, + ACTIONS(1330), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42015,7 +48805,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1142), 42, + ACTIONS(1332), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42023,11 +48813,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -42058,11 +48849,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5507] = 3, + [5502] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1144), 17, + ACTIONS(1334), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42080,7 +48871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1146), 42, + ACTIONS(1336), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42088,11 +48879,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -42123,11 +48915,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5575] = 3, + [5571] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1148), 17, + ACTIONS(1338), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42145,7 +48937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1150), 42, + ACTIONS(1340), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42153,11 +48945,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -42188,11 +48981,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5643] = 3, + [5640] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1152), 17, + ACTIONS(1342), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42210,7 +49003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1154), 42, + ACTIONS(1344), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42218,11 +49011,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -42253,11 +49047,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5711] = 3, + [5709] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1156), 17, + ACTIONS(1346), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42275,7 +49069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1158), 42, + ACTIONS(1348), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42283,11 +49077,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -42318,11 +49113,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5779] = 3, + [5778] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1156), 17, + ACTIONS(1350), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42340,7 +49135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1158), 42, + ACTIONS(1352), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42348,11 +49143,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -42387,7 +49183,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1160), 17, + ACTIONS(1354), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42405,7 +49201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1162), 42, + ACTIONS(1356), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42413,76 +49209,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, + anon_sym_using, anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [5915] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1164), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1166), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -42513,86 +49245,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5983] = 13, - ACTIONS(885), 1, - anon_sym_EQ, - ACTIONS(889), 1, - anon_sym_EQ_GT, - ACTIONS(897), 1, - anon_sym_LBRACE, - ACTIONS(899), 1, - anon_sym_LBRACK, - ACTIONS(944), 1, - anon_sym_in, - ACTIONS(947), 1, - anon_sym_of, - ACTIONS(1168), 1, - sym_identifier, - STATE(1260), 1, - sym_variable_declarator, + [5916] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1099), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(764), 13, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 20, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [6071] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1170), 17, + ACTIONS(1358), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42610,7 +49267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1172), 42, + ACTIONS(1360), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42618,11 +49275,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -42653,11 +49311,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6139] = 3, + [5985] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1174), 17, + ACTIONS(1362), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42675,7 +49333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1176), 42, + ACTIONS(1364), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42683,11 +49341,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -42718,11 +49377,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6207] = 3, + [6054] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1178), 17, + ACTIONS(1366), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42740,7 +49399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1180), 42, + ACTIONS(1368), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42748,11 +49407,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -42783,11 +49443,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6275] = 3, + [6123] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1182), 17, + ACTIONS(1370), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42805,7 +49465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1184), 42, + ACTIONS(1372), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42813,11 +49473,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -42848,11 +49509,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6343] = 3, + [6192] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1186), 17, + ACTIONS(1374), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42870,7 +49531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1188), 42, + ACTIONS(1376), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42878,11 +49539,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -42913,11 +49575,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6411] = 3, + [6261] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1190), 17, + ACTIONS(1206), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -42935,7 +49597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1192), 42, + ACTIONS(1208), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -42943,11 +49605,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -42978,11 +49641,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6479] = 3, + [6330] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1012), 17, + ACTIONS(1378), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -43000,7 +49663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1014), 42, + ACTIONS(1380), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43008,11 +49671,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -43043,11 +49707,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6547] = 3, + [6399] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1194), 17, + ACTIONS(1382), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -43065,7 +49729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1196), 42, + ACTIONS(1384), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43073,11 +49737,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -43108,11 +49773,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6615] = 3, + [6468] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1198), 17, + ACTIONS(1386), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -43130,7 +49795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1200), 42, + ACTIONS(1388), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43138,11 +49803,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -43173,11 +49839,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6683] = 3, + [6537] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1202), 17, + ACTIONS(1390), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -43195,7 +49861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1204), 42, + ACTIONS(1392), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43203,11 +49869,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -43238,11 +49905,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6751] = 3, + [6606] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1206), 17, + ACTIONS(1394), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -43260,7 +49927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1208), 42, + ACTIONS(1396), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43268,11 +49935,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -43303,11 +49971,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6819] = 3, + [6675] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1210), 17, + ACTIONS(1398), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -43325,7 +49993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1212), 42, + ACTIONS(1400), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43333,11 +50001,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -43368,11 +50037,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6887] = 3, + [6744] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1214), 17, + ACTIONS(1402), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -43390,7 +50059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1216), 42, + ACTIONS(1404), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43398,11 +50067,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -43433,11 +50103,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6955] = 3, + [6813] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1218), 17, + ACTIONS(1206), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -43455,7 +50125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1220), 42, + ACTIONS(1208), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43463,11 +50133,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -43498,11 +50169,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7023] = 3, + [6882] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1222), 17, + ACTIONS(1406), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -43520,7 +50191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1224), 42, + ACTIONS(1408), 43, anon_sym_export, anon_sym_default, anon_sym_import, @@ -43528,11 +50199,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -43563,29 +50235,297 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7091] = 11, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(866), 1, - anon_sym_EQ, - ACTIONS(895), 1, + [6951] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1410), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1412), 43, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_using, + anon_sym_await, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [7020] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1414), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1416), 43, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_using, + anon_sym_await, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [7089] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1418), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1420), 43, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_using, + anon_sym_await, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [7158] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1206), 17, + ts_builtin_sym_end, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1208), 43, + anon_sym_export, + anon_sym_default, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_using, + anon_sym_await, + anon_sym_else, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_case, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, sym_identifier, - ACTIONS(897), 1, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [7227] = 13, + ACTIONS(384), 1, + anon_sym_EQ, + ACTIONS(402), 1, + anon_sym_EQ_GT, + ACTIONS(506), 1, + anon_sym_in, + ACTIONS(1102), 1, anon_sym_LBRACE, - ACTIONS(899), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - STATE(1260), 1, + ACTIONS(1422), 1, + sym_identifier, + ACTIONS(1424), 1, + anon_sym_of, + STATE(1385), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1191), 3, + STATE(1202), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(764), 13, - sym__automatic_semicolon, + ACTIONS(169), 13, sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_DOT, @@ -43597,7 +50537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 15, + ACTIONS(202), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43613,9 +50553,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(775), 21, + ACTIONS(165), 20, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -43635,109 +50574,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [7174] = 3, + [7315] = 12, + ACTIONS(200), 1, + anon_sym_EQ_GT, + ACTIONS(490), 1, + anon_sym_EQ, + ACTIONS(1100), 1, + sym_identifier, + ACTIONS(1102), 1, + anon_sym_LBRACE, + ACTIONS(1104), 1, + anon_sym_of, + ACTIONS(1106), 1, + anon_sym_LBRACK, + STATE(1385), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1226), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - 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, - ACTIONS(1228), 36, + STATE(1311), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(169), 13, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_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, - [7240] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1230), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - 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, - ACTIONS(1232), 36, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, + ACTIONS(202), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43753,22 +50626,9 @@ 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, - [7306] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1234), 21, + ACTIONS(165), 21, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -43787,35 +50647,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1236), 36, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_instanceof, + [7401] = 11, + ACTIONS(183), 1, + anon_sym_COLON, + ACTIONS(351), 1, anon_sym_RBRACE, + ACTIONS(1430), 1, anon_sym_LPAREN, + ACTIONS(1433), 1, + anon_sym_EQ, + ACTIONS(1435), 1, + anon_sym_EQ_GT, + STATE(1418), 1, + aux_sym_object_repeat1, + STATE(1452), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1428), 15, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -43824,13 +50682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7372] = 5, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1244), 15, + ACTIONS(1437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43846,7 +50698,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(1238), 20, + ACTIONS(1426), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -43867,33 +50719,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1240), 21, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [7442] = 3, + [7483] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1246), 21, + ACTIONS(1156), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -43915,15 +50745,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1248), 36, + ACTIONS(1154), 36, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -43952,25 +50782,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7508] = 11, - ACTIONS(766), 1, + [7549] = 11, + ACTIONS(171), 1, anon_sym_RBRACE, - ACTIONS(777), 1, + ACTIONS(183), 1, anon_sym_COLON, - ACTIONS(1250), 1, + ACTIONS(1430), 1, anon_sym_LPAREN, - ACTIONS(1253), 1, + ACTIONS(1433), 1, anon_sym_EQ, - ACTIONS(1255), 1, + ACTIONS(1435), 1, anon_sym_EQ_GT, - STATE(1311), 1, + STATE(1452), 1, aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(1487), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1240), 15, + ACTIONS(1428), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -43986,7 +50816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1244), 15, + ACTIONS(1437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44002,7 +50832,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(1238), 20, + ACTIONS(1426), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44023,11 +50853,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7590] = 3, + [7631] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(994), 21, + ACTIONS(1439), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -44049,15 +50879,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(992), 36, + ACTIONS(1441), 36, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -44086,41 +50916,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7656] = 11, - ACTIONS(777), 1, - anon_sym_COLON, - ACTIONS(792), 1, - anon_sym_RBRACE, - ACTIONS(1250), 1, - anon_sym_LPAREN, - ACTIONS(1253), 1, - anon_sym_EQ, - ACTIONS(1255), 1, - anon_sym_EQ_GT, - STATE(1310), 1, - aux_sym_object_repeat1, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, + [7697] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1240), 15, - sym__automatic_semicolon, + ACTIONS(1443), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + ACTIONS(1445), 36, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1244), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44136,32 +50971,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(1238), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - 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, - [7738] = 3, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [7763] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1257), 21, + ACTIONS(1447), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -44183,15 +51005,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1259), 36, + ACTIONS(1449), 36, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -44220,11 +51042,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7804] = 3, + [7829] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1261), 21, + ACTIONS(1451), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -44246,15 +51068,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1263), 36, + ACTIONS(1453), 36, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -44283,25 +51105,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7870] = 11, - ACTIONS(777), 1, - anon_sym_COLON, - ACTIONS(800), 1, - anon_sym_RBRACE, - ACTIONS(1250), 1, - anon_sym_LPAREN, - ACTIONS(1253), 1, - anon_sym_EQ, - ACTIONS(1255), 1, - anon_sym_EQ_GT, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, + [7895] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1455), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + ACTIONS(1457), 36, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_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, + [7961] = 5, + ACTIONS(1459), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1426), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + ACTIONS(1428), 21, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [8031] = 11, + ACTIONS(183), 1, + anon_sym_COLON, + ACTIONS(216), 1, + anon_sym_RBRACE, + ACTIONS(1430), 1, + anon_sym_LPAREN, + ACTIONS(1433), 1, + anon_sym_EQ, + ACTIONS(1435), 1, + anon_sym_EQ_GT, + STATE(1418), 1, aux_sym_object_repeat1, + STATE(1452), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1240), 15, + ACTIONS(1428), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -44317,7 +51267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1244), 15, + ACTIONS(1437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44333,7 +51283,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(1238), 20, + ACTIONS(1426), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44354,15 +51304,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7952] = 6, - ACTIONS(889), 1, - anon_sym_EQ_GT, - ACTIONS(891), 1, + [8113] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1461), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + ACTIONS(1463), 36, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_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, + [8179] = 6, + ACTIONS(1465), 1, anon_sym_EQ, + ACTIONS(1467), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(790), 15, + ACTIONS(1437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44378,7 +51391,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(764), 19, + ACTIONS(1428), 19, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -44398,7 +51411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(775), 20, + ACTIONS(1426), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44419,15 +51432,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8023] = 6, - ACTIONS(885), 1, + [8250] = 6, + ACTIONS(384), 1, anon_sym_EQ, - ACTIONS(889), 1, + ACTIONS(402), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(790), 15, + ACTIONS(202), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44443,7 +51456,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(764), 19, + ACTIONS(169), 19, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -44463,7 +51476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(775), 20, + ACTIONS(165), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44484,15 +51497,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8094] = 6, - ACTIONS(1242), 1, + [8321] = 6, + ACTIONS(1459), 1, anon_sym_EQ, - ACTIONS(1265), 1, + ACTIONS(1467), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, + ACTIONS(1437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44508,7 +51521,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(1240), 19, + ACTIONS(1428), 19, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -44528,7 +51541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(1426), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44549,15 +51562,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8165] = 6, - ACTIONS(1265), 1, + [8392] = 6, + ACTIONS(402), 1, anon_sym_EQ_GT, - ACTIONS(1267), 1, + ACTIONS(440), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, + ACTIONS(202), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44573,7 +51586,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(1240), 19, + ACTIONS(169), 19, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -44593,7 +51606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(165), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44614,29 +51627,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8236] = 12, - ACTIONS(891), 1, + [8463] = 12, + ACTIONS(440), 1, anon_sym_EQ, - ACTIONS(897), 1, - anon_sym_LBRACE, - ACTIONS(932), 1, + ACTIONS(498), 1, anon_sym_EQ_GT, - ACTIONS(944), 1, + ACTIONS(506), 1, anon_sym_in, - ACTIONS(947), 1, - anon_sym_of, - ACTIONS(1269), 1, + ACTIONS(1102), 1, + anon_sym_LBRACE, + ACTIONS(1469), 1, sym_identifier, - ACTIONS(1271), 1, + ACTIONS(1471), 1, + anon_sym_of, + ACTIONS(1473), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1313), 3, + STATE(1469), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(764), 11, + ACTIONS(169), 11, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_DOT, @@ -44648,7 +51661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 15, + ACTIONS(202), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44664,7 +51677,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(775), 20, + ACTIONS(165), 20, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -44685,13 +51698,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [8319] = 5, - ACTIONS(1267), 1, + [8546] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1478), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1476), 40, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_using, + anon_sym_await, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [8610] = 5, + ACTIONS(1465), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, + ACTIONS(1437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44707,7 +51781,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(1240), 19, + ACTIONS(1428), 19, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -44727,7 +51801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(1426), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -44748,11 +51822,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8387] = 3, + [8678] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1276), 15, + ACTIONS(1478), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -44768,17 +51842,18 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1274), 39, + ACTIONS(1476), 40, anon_sym_export, anon_sym_import, anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -44808,194 +51883,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8450] = 3, + [8742] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1234), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - 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, - ACTIONS(1236), 33, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1482), 15, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_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_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [8513] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1261), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1480), 40, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_using, + anon_sym_await, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(1263), 33, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_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, - [8576] = 6, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(866), 1, - anon_sym_EQ, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [8806] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(764), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1482), 15, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(775), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1480), 40, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_using, + anon_sym_await, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, 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, - [8645] = 3, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [8870] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1280), 15, + ACTIONS(1486), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -45011,17 +52025,18 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1278), 39, + ACTIONS(1484), 40, anon_sym_export, anon_sym_import, anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, + anon_sym_using, + anon_sym_await, anon_sym_if, anon_sym_switch, anon_sym_for, - anon_sym_await, anon_sym_while, anon_sym_do, anon_sym_try, @@ -45051,35 +52066,2689 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8708] = 6, - ACTIONS(1255), 1, - anon_sym_EQ_GT, - ACTIONS(1282), 1, - anon_sym_EQ, + [8934] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 17, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(1490), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1488), 40, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_using, + anon_sym_await, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [8998] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1494), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1492), 40, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_using, + anon_sym_await, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [9062] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1498), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1496), 40, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_using, + anon_sym_await, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [9126] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1502), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1500), 40, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_using, + anon_sym_await, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [9190] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1506), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1504), 40, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_using, + anon_sym_await, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [9254] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1510), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1508), 40, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_using, + anon_sym_await, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [9318] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1478), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1476), 40, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_using, + anon_sym_await, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [9382] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1514), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1512), 40, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_using, + anon_sym_await, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [9446] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1482), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1480), 40, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_using, + anon_sym_await, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [9510] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1478), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1476), 40, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_using, + anon_sym_await, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [9574] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1518), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1516), 40, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_using, + anon_sym_await, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [9638] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1522), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1520), 40, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_using, + anon_sym_await, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [9702] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1154), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1156), 40, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_using, + anon_sym_await, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [9766] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1482), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1480), 40, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_using, + anon_sym_await, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [9830] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1455), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + ACTIONS(1457), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_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, + [9893] = 6, + ACTIONS(1524), 1, + anon_sym_EQ, + ACTIONS(1526), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1428), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1426), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + [9962] = 5, + ACTIONS(1459), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1428), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1426), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + [10029] = 6, + ACTIONS(1435), 1, + anon_sym_EQ_GT, + ACTIONS(1459), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1428), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1426), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + [10098] = 6, + ACTIONS(200), 1, + anon_sym_EQ_GT, + ACTIONS(440), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(202), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(169), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(165), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + [10167] = 7, + ACTIONS(494), 1, + anon_sym_COLON, + ACTIONS(1435), 1, + anon_sym_EQ_GT, + ACTIONS(1528), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1428), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1426), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + [10238] = 7, + ACTIONS(498), 1, + anon_sym_EQ_GT, + ACTIONS(511), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(509), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(169), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(202), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(165), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + [10309] = 7, + ACTIONS(1532), 1, + anon_sym_EQ, + ACTIONS(1535), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1530), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1428), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1426), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + [10380] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1461), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + ACTIONS(1463), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_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, + [10443] = 7, + ACTIONS(200), 1, + anon_sym_EQ_GT, + ACTIONS(490), 1, + anon_sym_EQ, + ACTIONS(494), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(202), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(169), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(165), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + [10514] = 7, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + ACTIONS(1540), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1537), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1428), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1426), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + [10585] = 6, + ACTIONS(200), 1, + anon_sym_EQ_GT, + ACTIONS(490), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(202), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(169), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(165), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + [10654] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1156), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + ACTIONS(1154), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_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, + [10717] = 7, + ACTIONS(440), 1, + anon_sym_EQ, + ACTIONS(498), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(496), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(169), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(202), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(165), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + [10788] = 7, + ACTIONS(1459), 1, + anon_sym_EQ, + ACTIONS(1535), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1543), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1428), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1426), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + [10859] = 7, + ACTIONS(488), 1, + anon_sym_COLON, + ACTIONS(1435), 1, + anon_sym_EQ_GT, + ACTIONS(1528), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1428), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1426), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + [10930] = 7, + ACTIONS(200), 1, + anon_sym_EQ_GT, + ACTIONS(488), 1, + anon_sym_COLON, + ACTIONS(490), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(202), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(169), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(165), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + [11001] = 6, + ACTIONS(1435), 1, + anon_sym_EQ_GT, + ACTIONS(1528), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1428), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1426), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + [11070] = 6, + ACTIONS(500), 1, + anon_sym_EQ_GT, + ACTIONS(528), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(202), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(169), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(165), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + [11139] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1443), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + ACTIONS(1445), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_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, + [11202] = 6, + ACTIONS(440), 1, + anon_sym_EQ, + ACTIONS(500), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(202), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(169), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(165), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + [11271] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1447), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + ACTIONS(1449), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_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, + [11334] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1451), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + ACTIONS(1453), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_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, + [11397] = 7, + ACTIONS(402), 1, + anon_sym_EQ_GT, + ACTIONS(517), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(514), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(169), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(202), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(165), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + [11468] = 6, + ACTIONS(1459), 1, + anon_sym_EQ, + ACTIONS(1526), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1428), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1426), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + [11537] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1439), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + ACTIONS(1441), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_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, + [11600] = 5, + ACTIONS(1528), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1428), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1426), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + [11666] = 8, + ACTIONS(384), 1, + anon_sym_EQ, + ACTIONS(402), 1, + anon_sym_EQ_GT, + ACTIONS(506), 1, + anon_sym_in, + ACTIONS(1545), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(169), 15, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(202), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(165), 19, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + [11738] = 7, + ACTIONS(1465), 1, + anon_sym_EQ, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1547), 3, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(1428), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1426), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + [11808] = 8, + ACTIONS(1465), 1, + anon_sym_EQ, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + ACTIONS(1550), 1, + anon_sym_of, + ACTIONS(1552), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1428), 15, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -45093,7 +54762,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(1437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1426), 19, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + [11880] = 6, + ACTIONS(1459), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1543), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1428), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1426), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45114,14 +54860,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8777] = 3, + [11948] = 6, + ACTIONS(1540), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1226), 21, + ACTIONS(1537), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1428), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1426), 20, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -45140,32 +54922,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1228), 33, - sym__automatic_semicolon, - sym__ternary_qmark, + [12016] = 6, + ACTIONS(1532), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1530), 4, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1428), 13, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -45174,15 +54947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [8840] = 6, - ACTIONS(891), 1, - anon_sym_EQ, - ACTIONS(921), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(790), 15, + ACTIONS(1437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45198,25 +54963,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(764), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(775), 20, + ACTIONS(1426), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45237,17 +54984,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8909] = 7, - ACTIONS(870), 1, - anon_sym_COLON, - ACTIONS(1255), 1, - anon_sym_EQ_GT, - ACTIONS(1282), 1, + [12084] = 7, + ACTIONS(384), 1, anon_sym_EQ, + ACTIONS(402), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, + ACTIONS(577), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(169), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(202), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45263,24 +55026,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(1240), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(165), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45301,17 +55047,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8980] = 7, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(866), 1, + [12154] = 5, + ACTIONS(1524), 1, anon_sym_EQ, - ACTIONS(870), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(790), 15, + ACTIONS(1437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45327,10 +55069,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(764), 16, + ACTIONS(1428), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -45344,7 +55087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(775), 20, + ACTIONS(1426), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45365,15 +55108,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9051] = 6, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(1284), 1, + [12220] = 8, + ACTIONS(402), 1, anon_sym_EQ_GT, + ACTIONS(509), 1, + anon_sym_COMMA, + ACTIONS(514), 1, + anon_sym_RBRACK, + ACTIONS(517), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, + ACTIONS(169), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(202), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45389,25 +55150,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(1240), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(165), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45428,20 +55171,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9120] = 7, - ACTIONS(889), 1, - anon_sym_EQ_GT, - ACTIONS(904), 1, + [12291] = 6, + ACTIONS(1465), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(901), 4, + ACTIONS(1547), 3, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(764), 13, + ACTIONS(1428), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -45455,7 +55195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 15, + ACTIONS(1437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45471,7 +55211,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(775), 20, + ACTIONS(1426), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45492,17 +55232,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9191] = 7, - ACTIONS(864), 1, - anon_sym_COLON, - ACTIONS(1255), 1, + [12358] = 8, + ACTIONS(1467), 1, anon_sym_EQ_GT, - ACTIONS(1282), 1, + ACTIONS(1530), 1, + anon_sym_COMMA, + ACTIONS(1537), 1, + anon_sym_RBRACK, + ACTIONS(1540), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, + ACTIONS(1428), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45518,24 +55274,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(1240), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(1426), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45556,58 +55295,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9262] = 3, + [12429] = 7, + ACTIONS(1465), 1, + anon_sym_EQ, + ACTIONS(1550), 1, + anon_sym_of, + ACTIONS(1552), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1257), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - 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, - ACTIONS(1259), 33, - sym__automatic_semicolon, + ACTIONS(1428), 15, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -45616,15 +55321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9325] = 6, - ACTIONS(1284), 1, - anon_sym_EQ_GT, - ACTIONS(1286), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1244), 15, + ACTIONS(1437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45640,27 +55337,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(1240), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(1426), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -45679,75 +55357,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9394] = 3, + [12498] = 6, + ACTIONS(440), 1, + anon_sym_EQ, + ACTIONS(628), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1276), 15, + ACTIONS(169), 14, + sym__ternary_qmark, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_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_private_property_identifier, - anon_sym_AT, - ACTIONS(1274), 39, - anon_sym_export, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [9457] = 6, - ACTIONS(917), 1, - anon_sym_EQ, - ACTIONS(921), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(790), 15, + ACTIONS(202), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45763,25 +55396,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(764), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(775), 20, + ACTIONS(165), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45802,13 +55417,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9526] = 5, - ACTIONS(1242), 1, + [12564] = 6, + ACTIONS(1459), 1, anon_sym_EQ, + ACTIONS(1555), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, + ACTIONS(1428), 14, + sym__ternary_qmark, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45824,26 +55456,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(1240), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(1426), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -45864,141 +55477,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9593] = 3, + [12630] = 6, + ACTIONS(624), 1, + anon_sym_EQ, + ACTIONS(628), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1290), 15, + ACTIONS(169), 14, + sym__ternary_qmark, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_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_private_property_identifier, - anon_sym_AT, - ACTIONS(1288), 39, - anon_sym_export, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [9656] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1276), 15, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(202), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(165), 20, + anon_sym_STAR, + anon_sym_in, anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1274), 39, - anon_sym_export, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [9719] = 7, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1295), 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [12696] = 6, + ACTIONS(1557), 1, anon_sym_EQ, + ACTIONS(1559), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1292), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1240), 13, + ACTIONS(1428), 14, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -46011,7 +55560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1244), 15, + ACTIONS(1437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46027,7 +55576,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(1238), 20, + ACTIONS(1426), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46048,81 +55597,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9790] = 3, + [12762] = 6, + ACTIONS(580), 1, + anon_sym_EQ_GT, + ACTIONS(590), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1300), 15, - anon_sym_LBRACE, + ACTIONS(169), 14, + sym__ternary_qmark, + anon_sym_of, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_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_private_property_identifier, - anon_sym_AT, - ACTIONS(1298), 39, - anon_sym_export, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(202), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(165), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [9853] = 7, - ACTIONS(929), 1, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [12828] = 6, + ACTIONS(1459), 1, anon_sym_EQ, - ACTIONS(932), 1, + ACTIONS(1559), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(927), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(764), 13, + ACTIONS(1428), 14, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -46135,7 +55680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 15, + ACTIONS(1437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46151,7 +55696,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(775), 20, + ACTIONS(1426), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46172,22 +55717,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9924] = 7, - ACTIONS(891), 1, + [12894] = 6, + ACTIONS(440), 1, anon_sym_EQ, - ACTIONS(932), 1, + ACTIONS(498), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(942), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(764), 13, + ACTIONS(169), 14, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -46199,7 +55740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(790), 15, + ACTIONS(202), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46215,7 +55756,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(775), 20, + ACTIONS(165), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46236,20 +55777,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9995] = 7, - ACTIONS(1304), 1, + [12960] = 7, + ACTIONS(1530), 1, + anon_sym_COMMA, + ACTIONS(1537), 1, + anon_sym_RBRACK, + ACTIONS(1540), 1, anon_sym_EQ, - ACTIONS(1307), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1302), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1240), 13, + ACTIONS(1428), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -46263,7 +55801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1244), 15, + ACTIONS(1437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46279,7 +55817,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(1238), 20, + ACTIONS(1426), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46300,21 +55838,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10066] = 7, - ACTIONS(1242), 1, + [13028] = 6, + ACTIONS(440), 1, anon_sym_EQ, - ACTIONS(1307), 1, + ACTIONS(580), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1309), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1240), 13, + ACTIONS(169), 14, sym__ternary_qmark, + anon_sym_of, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -46327,7 +55861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1244), 15, + ACTIONS(202), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46343,7 +55877,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(1238), 20, + ACTIONS(165), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46364,15 +55898,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10137] = 6, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(891), 1, + [13094] = 8, + ACTIONS(440), 1, anon_sym_EQ, + ACTIONS(498), 1, + anon_sym_EQ_GT, + ACTIONS(506), 1, + anon_sym_in, + ACTIONS(1545), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(790), 15, + ACTIONS(169), 13, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(202), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46388,13 +55940,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(764), 17, - sym__automatic_semicolon, + ACTIONS(165), 19, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + [13164] = 8, + ACTIONS(1459), 1, + anon_sym_EQ, + ACTIONS(1535), 1, + anon_sym_EQ_GT, + ACTIONS(1550), 1, + anon_sym_of, + ACTIONS(1552), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1428), 13, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -46406,9 +55986,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(775), 20, + ACTIONS(1437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1426), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -46427,15 +56022,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10206] = 6, - ACTIONS(1242), 1, + [13234] = 6, + ACTIONS(1459), 1, anon_sym_EQ, - ACTIONS(1255), 1, + ACTIONS(1535), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1244), 15, + ACTIONS(1428), 14, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1437), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46451,13 +56061,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 17, - sym__automatic_semicolon, + ACTIONS(1426), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + [13300] = 6, + ACTIONS(1555), 1, + anon_sym_EQ_GT, + ACTIONS(1561), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1428), 14, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -46469,7 +56105,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(1437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1426), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -46490,194 +56142,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10275] = 3, + [13366] = 5, + ACTIONS(1557), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1276), 15, + ACTIONS(1428), 14, + sym__ternary_qmark, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_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_private_property_identifier, - anon_sym_AT, - ACTIONS(1274), 39, - anon_sym_export, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(1437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1426), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [10338] = 3, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [13429] = 5, + ACTIONS(1561), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1313), 15, - anon_sym_LBRACE, + ACTIONS(1428), 14, + sym__ternary_qmark, + anon_sym_of, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_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_private_property_identifier, - anon_sym_AT, - ACTIONS(1311), 39, - anon_sym_export, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + ACTIONS(1437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1426), 20, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [10401] = 3, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [13492] = 7, + ACTIONS(1459), 1, + anon_sym_EQ, + ACTIONS(1550), 1, + anon_sym_of, + ACTIONS(1552), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(992), 15, - anon_sym_LBRACE, + ACTIONS(1428), 13, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BANG, - anon_sym_TILDE, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_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_private_property_identifier, - anon_sym_AT, - ACTIONS(994), 39, - anon_sym_export, - anon_sym_import, - anon_sym_with, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [10464] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1246), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, + ACTIONS(1437), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1426), 19, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_AMP_AMP, @@ -46696,1719 +56318,1572 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1248), 33, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [13559] = 10, + ACTIONS(662), 1, + anon_sym_BQUOTE, + ACTIONS(1567), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1569), 1, anon_sym_LBRACK, + ACTIONS(1571), 1, anon_sym_DOT, + ACTIONS(1573), 1, sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + STATE(597), 1, + sym_arguments, + STATE(607), 1, + sym_template_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1563), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1565), 24, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [10527] = 3, + [13625] = 5, + ACTIONS(718), 1, + anon_sym_EQ, + ACTIONS(1575), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(994), 21, + ACTIONS(710), 12, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - 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, - ACTIONS(992), 33, - sym__automatic_semicolon, + ACTIONS(708), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10590] = 3, + [13681] = 7, + ACTIONS(662), 1, + anon_sym_BQUOTE, + ACTIONS(1567), 1, + anon_sym_LPAREN, + STATE(597), 1, + sym_arguments, + STATE(607), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1230), 21, + ACTIONS(1563), 12, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - 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, - ACTIONS(1232), 33, - sym__automatic_semicolon, + ACTIONS(1565), 27, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_of, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [10653] = 7, - ACTIONS(788), 1, - anon_sym_EQ_GT, - ACTIONS(864), 1, - anon_sym_COLON, - ACTIONS(866), 1, - anon_sym_EQ, + [13741] = 4, + ACTIONS(1575), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(764), 16, - sym__automatic_semicolon, + ACTIONS(710), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(708), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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(775), 20, + [13794] = 5, + ACTIONS(662), 1, + anon_sym_BQUOTE, + STATE(607), 1, + sym_template_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1577), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - 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, - [10724] = 7, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1267), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1315), 3, + ACTIONS(1579), 28, + sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(1240), 13, - sym__ternary_qmark, + anon_sym_of, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + [13849] = 4, + ACTIONS(1581), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(696), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - 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, - [10794] = 8, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1267), 1, - anon_sym_EQ, - ACTIONS(1318), 1, - anon_sym_in, - ACTIONS(1321), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1240), 15, + ACTIONS(694), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 19, + [13902] = 9, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + sym_optional_chain, + STATE(637), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1583), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - 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, - [10866] = 5, - ACTIONS(1282), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 17, - sym__automatic_semicolon, + ACTIONS(1585), 23, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_BQUOTE, + [13965] = 9, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + sym_optional_chain, + STATE(637), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1238), 20, + ACTIONS(1591), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1593), 23, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [14028] = 8, + ACTIONS(662), 1, + anon_sym_BQUOTE, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1573), 1, + sym_optional_chain, + STATE(607), 1, + sym_template_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1577), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(1579), 25, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [10932] = 7, - ACTIONS(885), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [14089] = 4, + ACTIONS(1459), 1, anon_sym_EQ, - ACTIONS(889), 1, - anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(949), 3, + ACTIONS(1426), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1428), 29, + sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(764), 13, - sym__ternary_qmark, + anon_sym_of, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 20, + [14142] = 8, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + sym_optional_chain, + STATE(637), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1595), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1597), 25, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [14203] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1599), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - 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, - [11002] = 6, - ACTIONS(1295), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1292), 4, + ACTIONS(1601), 29, + sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1240), 13, - sym__ternary_qmark, + anon_sym_of, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + [14253] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1603), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - 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, - [11070] = 8, - ACTIONS(885), 1, - anon_sym_EQ, - ACTIONS(889), 1, - anon_sym_EQ_GT, - ACTIONS(944), 1, - anon_sym_in, - ACTIONS(1323), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(764), 15, + ACTIONS(1605), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 19, + [14303] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(706), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - 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, - [11142] = 6, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1309), 4, + ACTIONS(704), 29, + sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1240), 13, - sym__ternary_qmark, + anon_sym_of, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + [14353] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1607), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - 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, - [11210] = 6, - ACTIONS(1304), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1302), 4, + ACTIONS(1609), 29, + sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1240), 13, - sym__ternary_qmark, + anon_sym_of, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + [14403] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1611), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - 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, - [11278] = 5, - ACTIONS(1286), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1240), 17, - sym__automatic_semicolon, + ACTIONS(1613), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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(1238), 20, + [14453] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1615), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - 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, - [11344] = 8, - ACTIONS(889), 1, - anon_sym_EQ_GT, - ACTIONS(901), 1, - anon_sym_RBRACK, - ACTIONS(904), 1, - anon_sym_EQ, - ACTIONS(927), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(764), 13, + ACTIONS(1617), 29, sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 20, + [14503] = 4, + ACTIONS(1623), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1619), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - 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, - [11415] = 7, - ACTIONS(1267), 1, - anon_sym_EQ, - ACTIONS(1318), 1, - anon_sym_in, - ACTIONS(1321), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1240), 15, + anon_sym_instanceof, + ACTIONS(1621), 27, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + 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, + anon_sym_QMARK_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 19, + [14555] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1625), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - 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, - [11484] = 6, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(1307), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1240), 15, + ACTIONS(1627), 29, sym__ternary_qmark, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + [14605] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1629), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - 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, - [11551] = 6, - ACTIONS(891), 1, - anon_sym_EQ, - ACTIONS(932), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(764), 15, + ACTIONS(1631), 29, sym__ternary_qmark, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 20, + [14655] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1633), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - 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, - [11618] = 8, - ACTIONS(1265), 1, - anon_sym_EQ_GT, - ACTIONS(1292), 1, - anon_sym_RBRACK, - ACTIONS(1295), 1, - anon_sym_EQ, - ACTIONS(1302), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1240), 13, + ACTIONS(1635), 29, sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + [14705] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1577), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - 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, - [11689] = 6, - ACTIONS(1267), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1315), 3, + ACTIONS(1579), 29, + sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(1240), 13, - sym__ternary_qmark, + anon_sym_of, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + [14755] = 5, + ACTIONS(1644), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1641), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1637), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - 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, - [11756] = 8, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(1307), 1, - anon_sym_EQ_GT, - ACTIONS(1318), 1, - anon_sym_in, - ACTIONS(1321), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1240), 13, + ACTIONS(1639), 24, sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_of, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 19, + [14809] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1646), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - 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, - [11826] = 6, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(1325), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1240), 14, + ACTIONS(1648), 29, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + [14859] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(746), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - 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, - [11892] = 6, - ACTIONS(982), 1, - anon_sym_EQ, - ACTIONS(984), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(764), 14, + ACTIONS(748), 29, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 20, + [14909] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1650), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - 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, - [11958] = 8, - ACTIONS(891), 1, - anon_sym_EQ, - ACTIONS(932), 1, - anon_sym_EQ_GT, - ACTIONS(944), 1, - anon_sym_in, - ACTIONS(1323), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(764), 13, + ACTIONS(1652), 29, sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 19, + [14959] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1654), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - 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, - [12028] = 7, - ACTIONS(1292), 1, - anon_sym_RBRACK, - ACTIONS(1295), 1, - anon_sym_EQ, - ACTIONS(1302), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1240), 13, + ACTIONS(1656), 29, sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + [15009] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1658), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - 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, - [12096] = 6, - ACTIONS(891), 1, - anon_sym_EQ, - ACTIONS(984), 1, - anon_sym_EQ_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(764), 14, + ACTIONS(1660), 29, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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(790), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(775), 20, + [15059] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1662), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - 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, - [12162] = 6, - ACTIONS(1325), 1, - anon_sym_EQ_GT, - ACTIONS(1327), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1240), 14, + ACTIONS(1664), 29, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + [15109] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1666), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - 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, - [12228] = 7, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(1318), 1, - anon_sym_in, - ACTIONS(1321), 1, - anon_sym_of, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1240), 13, + ACTIONS(1668), 29, sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 19, + [15159] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1670), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - 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, - [12295] = 5, - ACTIONS(1327), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1240), 14, + ACTIONS(1672), 29, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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(1244), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1238), 20, + [15209] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(726), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - 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, - [12358] = 10, - ACTIONS(391), 1, - anon_sym_BQUOTE, - ACTIONS(1333), 1, + ACTIONS(728), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1337), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1339), 1, sym_optional_chain, - STATE(530), 1, - sym_template_string, - STATE(541), 1, - sym_arguments, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [15259] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1329), 12, + ACTIONS(1674), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48421,16 +57896,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1331), 24, + ACTIONS(1676), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -48446,19 +57925,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [12424] = 7, - ACTIONS(391), 1, anon_sym_BQUOTE, - ACTIONS(1333), 1, - anon_sym_LPAREN, - STATE(530), 1, - sym_template_string, - STATE(541), 1, - sym_arguments, + [15309] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1329), 12, + ACTIONS(1678), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48471,14 +57943,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1331), 27, + ACTIONS(1680), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -48499,15 +57972,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [12484] = 5, - ACTIONS(511), 1, - anon_sym_EQ, - ACTIONS(1341), 1, - sym__automatic_semicolon, + anon_sym_BQUOTE, + [15359] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(505), 12, + ACTIONS(1682), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48520,15 +57990,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(503), 29, + ACTIONS(1684), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -48550,13 +58020,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12540] = 4, - ACTIONS(1343), 1, - sym__automatic_semicolon, + [15409] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(501), 12, + ACTIONS(1686), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48569,15 +58037,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(499), 29, + ACTIONS(1688), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -48599,21 +58067,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12593] = 8, - ACTIONS(1333), 1, + [15459] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1690), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1692), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1337), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1349), 1, sym_optional_chain, - STATE(528), 1, - sym_arguments, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [15509] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1345), 12, + ACTIONS(702), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48626,16 +58131,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1347), 25, + ACTIONS(700), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -48652,13 +58161,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12654] = 4, - ACTIONS(1341), 1, - sym__automatic_semicolon, + [15559] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(505), 12, + ACTIONS(766), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48671,15 +58178,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(503), 29, + ACTIONS(768), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -48701,21 +58208,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12707] = 8, - ACTIONS(391), 1, - anon_sym_BQUOTE, - ACTIONS(1335), 1, + [15609] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(736), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(738), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1337), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1339), 1, sym_optional_chain, - STATE(530), 1, - sym_template_string, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [15659] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1351), 12, + ACTIONS(1694), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48728,17 +58272,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1353), 25, + ACTIONS(1696), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -48754,24 +58301,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [12768] = 9, - ACTIONS(1333), 1, + anon_sym_BQUOTE, + [15709] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1694), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1696), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1337), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1349), 1, sym_optional_chain, - STATE(528), 1, - sym_arguments, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [15759] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 12, + ACTIONS(1694), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48784,16 +58366,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1357), 23, + ACTIONS(1696), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -48807,14 +58393,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_BQUOTE, - [12831] = 4, - ACTIONS(1242), 1, - anon_sym_EQ, + [15809] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1694), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48827,15 +58413,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 29, + ACTIONS(1696), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -48857,15 +58443,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12884] = 5, - ACTIONS(391), 1, - anon_sym_BQUOTE, - STATE(530), 1, - sym_template_string, + [15859] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1351), 12, + ACTIONS(692), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48878,15 +58460,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1353), 28, + ACTIONS(690), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -48907,24 +58489,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [12939] = 9, - ACTIONS(1333), 1, + anon_sym_BQUOTE, + [15909] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1698), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1700), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1337), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1349), 1, sym_optional_chain, - STATE(528), 1, - sym_arguments, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [15959] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1361), 12, + ACTIONS(1702), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48937,16 +58554,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1363), 23, + ACTIONS(1704), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -48960,14 +58581,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_BQUOTE, - [13002] = 4, - ACTIONS(1369), 1, - sym_regex_flags, + [16009] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1365), 13, + ACTIONS(1706), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -48980,12 +58601,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1367), 27, + ACTIONS(1708), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, @@ -49006,14 +58627,15 @@ 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, - [13054] = 3, + [16059] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(545), 12, + ACTIONS(1710), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49026,15 +58648,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(547), 29, + ACTIONS(1712), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -49056,11 +58678,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13104] = 3, + [16109] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(575), 12, + ACTIONS(1714), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49073,15 +58695,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(577), 29, + ACTIONS(1716), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -49103,11 +58725,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13154] = 3, + [16159] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(555), 12, + ACTIONS(1718), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49120,15 +58742,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(557), 29, + ACTIONS(1720), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -49150,11 +58772,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13204] = 3, + [16209] = 5, + ACTIONS(1729), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1726), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1722), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1724), 24, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_of, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [16263] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(565), 12, + ACTIONS(1731), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49167,15 +58838,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(567), 29, + ACTIONS(1733), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -49197,11 +58868,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13254] = 3, + [16313] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(585), 12, + ACTIONS(1735), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49214,15 +58885,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(587), 29, + ACTIONS(1737), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -49244,11 +58915,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13304] = 3, + [16363] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(595), 12, + ACTIONS(1739), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49261,15 +58932,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(597), 29, + ACTIONS(1741), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -49291,11 +58962,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13354] = 3, + [16413] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(605), 12, + ACTIONS(756), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49308,15 +58979,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(607), 29, + ACTIONS(758), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -49338,11 +59009,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13404] = 3, + [16463] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(535), 12, + ACTIONS(1654), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49355,15 +59026,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(537), 29, + ACTIONS(1656), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -49385,11 +59056,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13454] = 3, + [16513] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1743), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49402,15 +59073,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 29, + ACTIONS(1745), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -49432,11 +59103,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13504] = 3, + [16563] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1351), 12, + ACTIONS(1747), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49449,15 +59120,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1353), 29, + ACTIONS(1749), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -49479,18 +59150,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13554] = 5, - ACTIONS(1378), 1, - anon_sym_EQ, + [16613] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1375), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1371), 12, + ACTIONS(1751), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49503,13 +59167,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1373), 24, + ACTIONS(1753), 29, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -49528,11 +59197,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13608] = 3, + [16663] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1380), 12, + ACTIONS(1755), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49545,15 +59214,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1382), 29, + ACTIONS(1757), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -49575,11 +59244,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13658] = 3, + [16713] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1384), 12, + ACTIONS(1759), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49592,15 +59261,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1386), 29, + ACTIONS(1761), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -49622,11 +59291,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13708] = 3, + [16763] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1388), 12, + ACTIONS(1763), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49639,15 +59308,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1390), 29, + ACTIONS(1765), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -49669,11 +59338,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13758] = 3, + [16813] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1392), 12, + ACTIONS(776), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49686,15 +59355,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1394), 29, + ACTIONS(778), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -49716,11 +59385,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13808] = 3, + [16863] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1388), 12, + ACTIONS(786), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49733,15 +59402,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1390), 29, + ACTIONS(788), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -49763,11 +59432,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13858] = 3, + [16913] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1396), 12, + ACTIONS(1426), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49780,15 +59449,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1398), 29, + ACTIONS(1428), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -49810,11 +59479,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13908] = 3, + [16963] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1400), 12, + ACTIONS(696), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49827,15 +59496,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1402), 29, + ACTIONS(694), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -49857,18 +59526,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13958] = 5, - ACTIONS(1411), 1, + [17013] = 5, + ACTIONS(718), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1408), 4, + ACTIONS(1767), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1404), 12, + ACTIONS(714), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49881,11 +59550,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1406), 24, + ACTIONS(716), 24, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_LPAREN, anon_sym_of, + anon_sym_LPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, @@ -49906,11 +59575,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14012] = 3, + [17067] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1413), 12, + ACTIONS(1770), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49923,15 +59592,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1415), 29, + ACTIONS(1772), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -49953,11 +59622,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14062] = 3, + [17117] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1417), 12, + ACTIONS(796), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -49970,15 +59639,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1419), 29, + ACTIONS(798), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -50000,11 +59669,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14112] = 3, + [17167] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1421), 12, + ACTIONS(1774), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50017,15 +59686,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1423), 29, + ACTIONS(1776), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -50047,11 +59716,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14162] = 3, + [17217] = 4, + ACTIONS(1729), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1425), 12, + ACTIONS(1722), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50064,15 +59735,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1427), 29, + ACTIONS(1724), 27, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -50094,105 +59763,297 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14212] = 3, + [17268] = 25, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + sym_optional_chain, + ACTIONS(1784), 1, + anon_sym_AMP_AMP, + ACTIONS(1786), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, + anon_sym_AMP, + ACTIONS(1794), 1, + anon_sym_CARET, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1812), 1, + sym__ternary_qmark, + STATE(637), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(525), 12, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1778), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1790), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(523), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1808), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1782), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1804), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1780), 7, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_BQUOTE, + [17361] = 25, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, anon_sym_DOT, + ACTIONS(1587), 1, sym_optional_chain, + ACTIONS(1784), 1, anon_sym_AMP_AMP, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, + anon_sym_AMP, + ACTIONS(1794), 1, anon_sym_CARET, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(1800), 1, anon_sym_PERCENT, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14262] = 3, + ACTIONS(1812), 1, + sym__ternary_qmark, + STATE(637), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1429), 12, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1778), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1790), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1798), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1806), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1808), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1804), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1676), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [17454] = 25, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + sym_optional_chain, + ACTIONS(1784), 1, + anon_sym_AMP_AMP, + ACTIONS(1786), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1788), 1, anon_sym_GT_GT, + ACTIONS(1792), 1, anon_sym_AMP, + ACTIONS(1794), 1, + anon_sym_CARET, + ACTIONS(1796), 1, anon_sym_PIPE, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1812), 1, + sym__ternary_qmark, + STATE(637), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1778), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1790), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1431), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1808), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1782), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1804), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1814), 7, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_BQUOTE, + [17547] = 25, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, anon_sym_DOT, + ACTIONS(1587), 1, sym_optional_chain, + ACTIONS(1784), 1, anon_sym_AMP_AMP, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, + anon_sym_AMP, + ACTIONS(1794), 1, anon_sym_CARET, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(1800), 1, anon_sym_PERCENT, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1810), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1812), 1, + sym__ternary_qmark, + STATE(637), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1778), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1790), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1798), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1806), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1782), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1804), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1816), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_BQUOTE, - [14312] = 3, + [17640] = 10, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(1820), 1, + anon_sym_LBRACK, + ACTIONS(1822), 1, + anon_sym_DOT, + ACTIONS(1824), 1, + sym_optional_chain, + STATE(700), 1, + sym_arguments, + STATE(758), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1433), 12, + ACTIONS(1563), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50205,20 +60066,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1435), 29, + ACTIONS(1565), 21, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -50234,12 +60088,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + [17703] = 25, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + sym_optional_chain, + ACTIONS(1784), 1, + anon_sym_AMP_AMP, + ACTIONS(1786), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, + anon_sym_AMP, + ACTIONS(1794), 1, + anon_sym_CARET, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1812), 1, + sym__ternary_qmark, + STATE(637), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1778), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1790), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1798), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1806), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1808), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1782), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1804), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1716), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_BQUOTE, - [14362] = 3, + [17796] = 4, + ACTIONS(1465), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1437), 12, + ACTIONS(1426), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50252,15 +60175,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1439), 29, + ACTIONS(1428), 27, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -50282,154 +60203,343 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14412] = 5, - ACTIONS(511), 1, - anon_sym_EQ, + [17847] = 25, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + sym_optional_chain, + ACTIONS(1784), 1, + anon_sym_AMP_AMP, + ACTIONS(1786), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, + anon_sym_AMP, + ACTIONS(1794), 1, + anon_sym_CARET, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1812), 1, + sym__ternary_qmark, + STATE(637), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1441), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(507), 12, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1778), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1790), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(509), 24, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_of, + ACTIONS(1808), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1782), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1804), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1826), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_BQUOTE, + [17940] = 25, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, anon_sym_LBRACK, + ACTIONS(1571), 1, anon_sym_DOT, + ACTIONS(1587), 1, sym_optional_chain, + ACTIONS(1784), 1, anon_sym_AMP_AMP, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, + anon_sym_AMP, + ACTIONS(1794), 1, anon_sym_CARET, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(1800), 1, anon_sym_PERCENT, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1810), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1812), 1, + sym__ternary_qmark, + STATE(637), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1778), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1790), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1798), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1806), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1782), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1804), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1631), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_BQUOTE, - [14466] = 3, + [18033] = 15, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + sym_optional_chain, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + STATE(637), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1444), 12, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1778), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1790), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1798), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1830), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 29, + ACTIONS(1828), 17, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14516] = 3, + [18106] = 25, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + sym_optional_chain, + ACTIONS(1784), 1, + anon_sym_AMP_AMP, + ACTIONS(1786), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, + anon_sym_AMP, + ACTIONS(1794), 1, + anon_sym_CARET, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1812), 1, + sym__ternary_qmark, + STATE(637), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1448), 12, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1778), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1790), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1450), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1808), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1782), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1804), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1832), 7, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_BQUOTE, + [18199] = 25, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, anon_sym_DOT, + ACTIONS(1587), 1, sym_optional_chain, + ACTIONS(1784), 1, anon_sym_AMP_AMP, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, + anon_sym_AMP, + ACTIONS(1794), 1, anon_sym_CARET, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(1800), 1, anon_sym_PERCENT, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1810), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1812), 1, + sym__ternary_qmark, + STATE(637), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1778), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1790), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1798), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1806), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1782), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1804), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1700), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_BQUOTE, - [14566] = 3, + [18292] = 4, + ACTIONS(718), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1452), 12, + ACTIONS(714), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50442,15 +60552,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1454), 29, + ACTIONS(716), 27, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -50472,105 +60580,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14616] = 3, + [18343] = 25, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + sym_optional_chain, + ACTIONS(1784), 1, + anon_sym_AMP_AMP, + ACTIONS(1786), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, + anon_sym_AMP, + ACTIONS(1794), 1, + anon_sym_CARET, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1812), 1, + sym__ternary_qmark, + STATE(637), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1456), 12, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1778), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1790), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1458), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1808), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1782), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1804), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1708), 7, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_BQUOTE, + [18436] = 25, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, anon_sym_DOT, + ACTIONS(1587), 1, sym_optional_chain, + ACTIONS(1784), 1, anon_sym_AMP_AMP, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, + anon_sym_AMP, + ACTIONS(1794), 1, anon_sym_CARET, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(1800), 1, anon_sym_PERCENT, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14666] = 3, + ACTIONS(1812), 1, + sym__ternary_qmark, + STATE(637), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1460), 12, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1778), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1790), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1462), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1808), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1782), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1804), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1834), 7, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_BQUOTE, + [18529] = 25, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, anon_sym_DOT, + ACTIONS(1587), 1, sym_optional_chain, + ACTIONS(1784), 1, anon_sym_AMP_AMP, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, + anon_sym_AMP, + ACTIONS(1794), 1, anon_sym_CARET, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(1800), 1, anon_sym_PERCENT, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1810), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1812), 1, + sym__ternary_qmark, + STATE(637), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1778), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1790), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1798), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1806), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1782), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1804), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1712), 7, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_BQUOTE, - [14716] = 3, + [18622] = 10, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + sym_optional_chain, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + STATE(637), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1464), 12, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1830), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50583,41 +60816,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1466), 29, + ACTIONS(1828), 20, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14766] = 3, + [18685] = 4, + ACTIONS(1644), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1468), 12, + ACTIONS(1637), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50630,15 +60856,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1470), 29, + ACTIONS(1639), 27, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -50660,247 +60884,405 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14816] = 3, + [18736] = 21, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + sym_optional_chain, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, + anon_sym_AMP, + ACTIONS(1794), 1, + anon_sym_CARET, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + STATE(637), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1472), 12, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1778), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1790), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1474), 29, + ACTIONS(1808), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1782), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1804), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1828), 11, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [18821] = 22, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, anon_sym_DOT, + ACTIONS(1587), 1, sym_optional_chain, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, + anon_sym_AMP, + ACTIONS(1794), 1, anon_sym_CARET, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(1800), 1, anon_sym_PERCENT, + ACTIONS(1802), 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, - [14866] = 3, + STATE(637), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1476), 12, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1778), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1790), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1478), 29, + ACTIONS(1808), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1782), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1804), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1828), 10, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [18908] = 13, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, anon_sym_DOT, + ACTIONS(1587), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(1800), 1, anon_sym_PERCENT, + ACTIONS(1802), 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, - [14916] = 3, + STATE(637), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1480), 12, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1778), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1798), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1830), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1482), 29, + ACTIONS(1828), 19, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14966] = 3, + [18977] = 19, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + sym_optional_chain, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + STATE(637), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1778), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1790), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1486), 29, + ACTIONS(1808), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1830), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1782), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1804), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1828), 12, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15016] = 3, + [19058] = 20, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + sym_optional_chain, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, + anon_sym_AMP, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1830), 1, + anon_sym_PIPE, + STATE(637), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1778), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1790), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1486), 29, + ACTIONS(1808), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1782), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1804), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1828), 12, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, 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_BQUOTE, + [19141] = 21, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + sym_optional_chain, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, + anon_sym_AMP, + ACTIONS(1794), 1, + anon_sym_CARET, + ACTIONS(1800), 1, anon_sym_PERCENT, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1830), 1, + anon_sym_PIPE, + STATE(637), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1778), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1790), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1798), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1806), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1782), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1804), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1828), 11, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [15066] = 3, + [19226] = 12, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + sym_optional_chain, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + STATE(637), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1778), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1830), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -50909,44 +61291,48 @@ 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(1486), 29, + ACTIONS(1828), 19, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15116] = 3, + [19293] = 10, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + sym_optional_chain, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + STATE(637), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1830), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -50959,135 +61345,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1486), 29, + ACTIONS(1828), 20, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15166] = 3, + [19356] = 17, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + sym_optional_chain, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + STATE(637), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(529), 12, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1778), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1790), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1798), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(1804), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1830), 4, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(527), 29, + ACTIONS(1828), 14, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15216] = 3, + [19433] = 23, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + sym_optional_chain, + ACTIONS(1784), 1, + anon_sym_AMP_AMP, + ACTIONS(1786), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, + anon_sym_AMP, + ACTIONS(1794), 1, + anon_sym_CARET, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + STATE(637), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1488), 12, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1778), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1790), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1490), 29, + ACTIONS(1808), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1782), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1804), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1828), 9, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15266] = 3, + [19522] = 7, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1818), 1, + anon_sym_LPAREN, + STATE(700), 1, + sym_arguments, + STATE(758), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1492), 12, + ACTIONS(1563), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51100,18 +61517,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1494), 29, + ACTIONS(1565), 24, + sym__automatic_semicolon, sym__ternary_qmark, - 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_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -51129,12 +61542,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + [19579] = 5, + ACTIONS(83), 1, anon_sym_BQUOTE, - [15316] = 3, + STATE(758), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1496), 12, + ACTIONS(1577), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51147,18 +61563,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1498), 29, + ACTIONS(1579), 25, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -51176,12 +61589,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15366] = 3, + [19631] = 4, + ACTIONS(1644), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1500), 12, + ACTIONS(1637), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51194,18 +61608,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1502), 29, + ACTIONS(1639), 26, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -51224,11 +61635,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15416] = 3, + [19681] = 5, + ACTIONS(712), 1, + sym__automatic_semicolon, + ACTIONS(718), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1504), 12, + ACTIONS(710), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51241,18 +61656,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1506), 29, + ACTIONS(708), 25, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -51271,11 +61682,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15466] = 3, + [19733] = 4, + ACTIONS(1729), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1508), 12, + ACTIONS(1722), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51288,18 +61701,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1510), 29, + ACTIONS(1724), 26, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -51318,11 +61728,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15516] = 3, + [19783] = 8, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1820), 1, + anon_sym_LBRACK, + ACTIONS(1822), 1, + anon_sym_DOT, + ACTIONS(1824), 1, + sym_optional_chain, + STATE(758), 1, + sym_template_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1512), 12, + ACTIONS(1577), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51335,20 +61755,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1514), 29, + ACTIONS(1579), 22, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -51364,12 +61778,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15566] = 3, + [19841] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1516), 12, + ACTIONS(1678), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51382,18 +61795,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1518), 29, + ACTIONS(1680), 27, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -51412,11 +61823,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15616] = 3, + [19889] = 4, + ACTIONS(1459), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1520), 12, + ACTIONS(1426), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51429,18 +61842,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1522), 29, + ACTIONS(1428), 26, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -51459,11 +61869,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15666] = 3, + [19939] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1524), 12, + ACTIONS(1751), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51476,18 +61886,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1526), 29, + ACTIONS(1753), 27, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -51506,105 +61914,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15716] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1528), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1530), 29, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [19987] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1569), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1571), 1, anon_sym_DOT, + ACTIONS(1587), 1, sym_optional_chain, + ACTIONS(1784), 1, anon_sym_AMP_AMP, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, + anon_sym_AMP, + ACTIONS(1794), 1, anon_sym_CARET, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(1800), 1, anon_sym_PERCENT, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15766] = 3, + ACTIONS(1812), 1, + sym__ternary_qmark, + STATE(637), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1532), 12, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1778), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1790), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1534), 29, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1808), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1782), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1804), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1836), 6, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + [20079] = 8, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(1820), 1, + anon_sym_LBRACK, + ACTIONS(1822), 1, anon_sym_DOT, + ACTIONS(1838), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15816] = 3, + STATE(797), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(501), 12, + ACTIONS(1595), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51617,20 +62008,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(499), 29, + ACTIONS(1597), 22, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -51647,11 +62031,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15866] = 3, + [20137] = 9, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(1820), 1, + anon_sym_LBRACK, + ACTIONS(1822), 1, + anon_sym_DOT, + ACTIONS(1838), 1, + sym_optional_chain, + STATE(797), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1536), 12, + ACTIONS(1840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1583), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51664,20 +62061,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1538), 29, + ACTIONS(1585), 20, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -51691,14 +62081,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, - [15916] = 3, + [20197] = 6, + ACTIONS(718), 1, + anon_sym_EQ, + ACTIONS(720), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(521), 12, + ACTIONS(708), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(714), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51711,18 +62106,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(519), 29, + ACTIONS(716), 23, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -51741,11 +62130,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15966] = 3, + [20251] = 4, + ACTIONS(718), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1540), 12, + ACTIONS(714), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -51758,18 +62149,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1542), 29, + ACTIONS(716), 26, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -51788,211 +62176,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16016] = 19, - ACTIONS(1333), 1, + [20301] = 9, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - STATE(528), 1, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1591), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1554), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1556), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1546), 12, + ACTIONS(1593), 20, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [16097] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1568), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_BQUOTE, - [16190] = 25, - ACTIONS(1333), 1, + [20361] = 25, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1846), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1848), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1850), 1, + anon_sym_GT_GT, + ACTIONS(1854), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1856), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1858), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1872), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1874), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1870), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1844), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1584), 7, + ACTIONS(1826), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_BQUOTE, - [16283] = 4, - ACTIONS(1267), 1, - anon_sym_EQ, + [20452] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1690), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52005,16 +62310,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 27, + ACTIONS(1692), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -52033,93 +62337,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16334] = 25, - ACTIONS(1333), 1, + [20499] = 25, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1846), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1848), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1850), 1, + anon_sym_GT_GT, + ACTIONS(1854), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1856), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1858), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1872), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1874), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1870), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1844), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1466), 7, + ACTIONS(1780), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [16427] = 10, - ACTIONS(81), 1, anon_sym_BQUOTE, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1592), 1, - sym_optional_chain, - STATE(674), 1, - sym_template_string, - STATE(681), 1, - sym_arguments, + [20590] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1329), 12, + ACTIONS(1611), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52132,13 +62420,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1331), 21, + ACTIONS(1613), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -52154,291 +62446,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [16490] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + anon_sym_BQUOTE, + [20637] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1615), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1594), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [16583] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1596), 7, + ACTIONS(1617), 26, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [16676] = 25, - ACTIONS(1333), 1, + anon_sym_of, anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, anon_sym_DOT, - ACTIONS(1349), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 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(1582), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [20684] = 4, + ACTIONS(1876), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1619), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1402), 7, + ACTIONS(1621), 24, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [16769] = 25, - ACTIONS(1333), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1337), 1, anon_sym_DOT, - ACTIONS(1349), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1598), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [16862] = 7, - ACTIONS(81), 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, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1586), 1, - anon_sym_LPAREN, - STATE(674), 1, - sym_template_string, - STATE(681), 1, - sym_arguments, + [20733] = 5, + ACTIONS(740), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1329), 12, + ACTIONS(732), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(736), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52451,13 +62558,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1331), 24, - sym__automatic_semicolon, + ACTIONS(738), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -52476,107 +62581,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [16919] = 25, - ACTIONS(1333), 1, + anon_sym_BQUOTE, + [20784] = 25, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1846), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1848), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1850), 1, + anon_sym_GT_GT, + ACTIONS(1854), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1856), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1858), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1872), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1874), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1870), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1844), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1446), 7, + ACTIONS(1631), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_BQUOTE, - [17012] = 15, - ACTIONS(1333), 1, + [20875] = 15, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(1850), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, + ACTIONS(1862), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(1864), 1, anon_sym_STAR_STAR, - STATE(528), 1, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 7, + ACTIONS(1830), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -52584,14 +62688,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 17, + ACTIONS(1828), 15, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -52602,94 +62704,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [17085] = 25, - ACTIONS(1333), 1, + [20946] = 10, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(1864), 1, anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - STATE(528), 1, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1830), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1828), 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_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1490), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_BQUOTE, - [17178] = 10, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, + [21007] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(1625), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -52702,252 +62772,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 20, + ACTIONS(1627), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [17241] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - STATE(528), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1359), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1498), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_BQUOTE, - [17334] = 21, - ACTIONS(1333), 1, + [21054] = 21, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(1850), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1574), 1, + ACTIONS(1854), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1856), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1858), 1, anon_sym_PIPE, - STATE(528), 1, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1870), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1844), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 11, + ACTIONS(1828), 9, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [17419] = 22, - ACTIONS(1333), 1, + [21137] = 22, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1846), 1, anon_sym_AMP_AMP, - ACTIONS(1574), 1, + ACTIONS(1850), 1, + anon_sym_GT_GT, + ACTIONS(1854), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1856), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1858), 1, anon_sym_PIPE, - STATE(528), 1, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1870), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1844), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 10, + ACTIONS(1828), 8, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [17506] = 13, - ACTIONS(1333), 1, + [21222] = 13, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1558), 1, + ACTIONS(1862), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(1864), 1, anon_sym_STAR_STAR, - STATE(528), 1, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1556), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 8, + ACTIONS(1830), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -52956,14 +62960,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 19, + ACTIONS(1828), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -52976,324 +62978,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [17575] = 20, - ACTIONS(1333), 1, + [21289] = 19, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(1850), 1, anon_sym_GT_GT, - ACTIONS(1554), 1, - anon_sym_PIPE, - ACTIONS(1558), 1, + ACTIONS(1862), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(1864), 1, anon_sym_STAR_STAR, - ACTIONS(1574), 1, - anon_sym_AMP, - STATE(528), 1, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1830), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1870), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1844), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 12, + ACTIONS(1828), 10, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [17658] = 21, - ACTIONS(1333), 1, + [21368] = 20, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1830), 1, + anon_sym_PIPE, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(1850), 1, anon_sym_GT_GT, - ACTIONS(1554), 1, - anon_sym_PIPE, - ACTIONS(1558), 1, + ACTIONS(1854), 1, + anon_sym_AMP, + ACTIONS(1862), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(1864), 1, anon_sym_STAR_STAR, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - STATE(528), 1, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1870), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1844), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 11, + ACTIONS(1828), 10, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [17743] = 12, - ACTIONS(1333), 1, + [21449] = 21, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1830), 1, + anon_sym_PIPE, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1554), 10, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1850), 1, anon_sym_GT_GT, + ACTIONS(1854), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1546), 19, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1856), 1, anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - [17810] = 25, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, + ACTIONS(1862), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(1864), 1, anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - STATE(528), 1, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1870), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1844), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1600), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [17903] = 4, - ACTIONS(1378), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1371), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1373), 27, + ACTIONS(1828), 9, + sym__automatic_semicolon, sym__ternary_qmark, 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, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17954] = 10, - ACTIONS(1333), 1, + [21532] = 12, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1560), 1, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, anon_sym_STAR_STAR, - STATE(528), 1, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(1842), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1830), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -53302,23 +63194,19 @@ 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(1546), 20, + ACTIONS(1828), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -53326,13 +63214,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [18017] = 4, - ACTIONS(1411), 1, - anon_sym_EQ, + [21597] = 10, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(1820), 1, + anon_sym_LBRACK, + ACTIONS(1822), 1, + anon_sym_DOT, + ACTIONS(1838), 1, + sym_optional_chain, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + STATE(797), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1404), 12, + ACTIONS(1840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1830), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53345,87 +63246,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1406), 27, + ACTIONS(1828), 18, + sym__automatic_semicolon, sym__ternary_qmark, 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, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18068] = 17, - ACTIONS(1333), 1, + [21658] = 17, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(1850), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, + ACTIONS(1862), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(1864), 1, anon_sym_STAR_STAR, - STATE(528), 1, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1548), 3, + ACTIONS(1844), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1554), 4, + ACTIONS(1830), 4, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 14, + ACTIONS(1828), 12, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -53433,400 +63323,273 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [18145] = 4, - ACTIONS(511), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(507), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(509), 27, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [21733] = 23, + ACTIONS(1818), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(1820), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1822), 1, anon_sym_DOT, + ACTIONS(1838), 1, sym_optional_chain, + ACTIONS(1846), 1, anon_sym_AMP_AMP, + ACTIONS(1848), 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, - [18196] = 23, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(1850), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1854), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1856), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1858), 1, anon_sym_PIPE, - STATE(528), 1, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1870), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1844), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 9, + ACTIONS(1828), 7, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [18285] = 25, - ACTIONS(1333), 1, + [21820] = 25, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1846), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1848), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1850), 1, + anon_sym_GT_GT, + ACTIONS(1854), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1856), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1858), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1872), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1874), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1544), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1502), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_BQUOTE, - [18378] = 5, - ACTIONS(511), 1, - anon_sym_EQ, - ACTIONS(517), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(505), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(503), 25, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_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(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [18430] = 6, - ACTIONS(511), 1, - anon_sym_EQ, - ACTIONS(513), 1, - sym__automatic_semicolon, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(503), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(507), 12, + ACTIONS(1842), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(509), 23, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1852), 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, - [18484] = 4, - ACTIONS(1378), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1371), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1373), 26, + ACTIONS(1870), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1844), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1866), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1834), 5, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_of, + anon_sym_SEMI, + anon_sym_BQUOTE, + [21911] = 25, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(1820), 1, anon_sym_LBRACK, + ACTIONS(1822), 1, anon_sym_DOT, + ACTIONS(1838), 1, sym_optional_chain, + ACTIONS(1846), 1, anon_sym_AMP_AMP, + ACTIONS(1848), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1850), 1, + anon_sym_GT_GT, + ACTIONS(1854), 1, + anon_sym_AMP, + ACTIONS(1856), 1, anon_sym_CARET, + ACTIONS(1858), 1, + anon_sym_PIPE, + ACTIONS(1862), 1, anon_sym_PERCENT, + ACTIONS(1864), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1872), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1874), 1, + sym__ternary_qmark, + STATE(797), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1842), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1860), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1868), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1870), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1844), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1866), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1676), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, anon_sym_BQUOTE, - [18534] = 25, - ACTIONS(1333), 1, + [22002] = 25, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1882), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1884), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1886), 1, + anon_sym_GT_GT, + ACTIONS(1890), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1892), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1894), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1898), 1, + anon_sym_PERCENT, + ACTIONS(1900), 1, + anon_sym_STAR_STAR, + ACTIONS(1908), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1910), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1878), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1888), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1880), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1602), 6, + ACTIONS(1826), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [18626] = 3, + anon_sym_BQUOTE, + [22093] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1532), 12, + ACTIONS(1629), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -53839,15 +63602,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1534), 27, + ACTIONS(1631), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -53867,160 +63629,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18674] = 9, - ACTIONS(1586), 1, + [22140] = 25, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1838), 1, sym_optional_chain, - STATE(651), 1, + ACTIONS(1846), 1, + anon_sym_AMP_AMP, + ACTIONS(1848), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1850), 1, + anon_sym_GT_GT, + ACTIONS(1854), 1, + anon_sym_AMP, + ACTIONS(1856), 1, + anon_sym_CARET, + ACTIONS(1858), 1, + anon_sym_PIPE, + ACTIONS(1862), 1, + anon_sym_PERCENT, + ACTIONS(1864), 1, + anon_sym_STAR_STAR, + ACTIONS(1872), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1874), 1, + sym__ternary_qmark, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 12, + ACTIONS(1842), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1357), 20, + ACTIONS(1870), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1844), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1866), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1700), 5, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_of, + anon_sym_SEMI, + anon_sym_BQUOTE, + [22231] = 25, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(1820), 1, + anon_sym_LBRACK, + ACTIONS(1822), 1, + anon_sym_DOT, + ACTIONS(1838), 1, + sym_optional_chain, + ACTIONS(1846), 1, anon_sym_AMP_AMP, + ACTIONS(1848), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1850), 1, + anon_sym_GT_GT, + ACTIONS(1854), 1, + anon_sym_AMP, + ACTIONS(1856), 1, anon_sym_CARET, + ACTIONS(1858), 1, + anon_sym_PIPE, + ACTIONS(1862), 1, anon_sym_PERCENT, + ACTIONS(1864), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1872), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - [18734] = 4, - ACTIONS(1411), 1, - anon_sym_EQ, + ACTIONS(1874), 1, + sym__ternary_qmark, + STATE(797), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1404), 12, + ACTIONS(1840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1842), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1406), 26, + ACTIONS(1870), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1844), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1866), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1708), 5, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_of, + anon_sym_SEMI, + anon_sym_BQUOTE, + [22322] = 25, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(1820), 1, anon_sym_LBRACK, + ACTIONS(1822), 1, anon_sym_DOT, + ACTIONS(1838), 1, sym_optional_chain, + ACTIONS(1846), 1, anon_sym_AMP_AMP, + ACTIONS(1848), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1850), 1, + anon_sym_GT_GT, + ACTIONS(1854), 1, + anon_sym_AMP, + ACTIONS(1856), 1, anon_sym_CARET, + ACTIONS(1858), 1, + anon_sym_PIPE, + ACTIONS(1862), 1, anon_sym_PERCENT, + ACTIONS(1864), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1872), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [18784] = 8, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - STATE(651), 1, + ACTIONS(1874), 1, + sym__ternary_qmark, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1345), 12, + ACTIONS(1840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1842), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1347), 22, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - 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, + ACTIONS(1870), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1844), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1866), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1712), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, anon_sym_BQUOTE, - [18842] = 4, - ACTIONS(1242), 1, - anon_sym_EQ, + [22413] = 5, + ACTIONS(730), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(722), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(726), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54033,14 +63849,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 26, - sym__automatic_semicolon, + ACTIONS(728), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -54060,154 +63873,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18892] = 4, - ACTIONS(511), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(507), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(509), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [22464] = 25, + ACTIONS(1818), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1820), 1, anon_sym_LBRACK, + ACTIONS(1822), 1, anon_sym_DOT, + ACTIONS(1838), 1, sym_optional_chain, + ACTIONS(1882), 1, anon_sym_AMP_AMP, + ACTIONS(1884), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1886), 1, + anon_sym_GT_GT, + ACTIONS(1890), 1, + anon_sym_AMP, + ACTIONS(1892), 1, anon_sym_CARET, + ACTIONS(1894), 1, + anon_sym_PIPE, + ACTIONS(1898), 1, anon_sym_PERCENT, + ACTIONS(1900), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1908), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1910), 1, + sym__ternary_qmark, + STATE(797), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1878), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1888), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1904), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1880), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1902), 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, - [18942] = 8, - ACTIONS(81), 1, + ACTIONS(1631), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_BQUOTE, - ACTIONS(1588), 1, + [22555] = 15, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1592), 1, + ACTIONS(1838), 1, sym_optional_chain, - STATE(674), 1, - sym_template_string, + ACTIONS(1886), 1, + anon_sym_GT_GT, + ACTIONS(1898), 1, + anon_sym_PERCENT, + ACTIONS(1900), 1, + anon_sym_STAR_STAR, + STATE(797), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1351), 12, + ACTIONS(1840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1878), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1888), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1830), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1353), 22, + ACTIONS(1828), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - 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, - [19000] = 5, - ACTIONS(81), 1, anon_sym_BQUOTE, - STATE(674), 1, - sym_template_string, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1351), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1353), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [22626] = 25, + ACTIONS(1818), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1820), 1, anon_sym_LBRACK, + ACTIONS(1822), 1, anon_sym_DOT, + ACTIONS(1838), 1, sym_optional_chain, + ACTIONS(1846), 1, anon_sym_AMP_AMP, + ACTIONS(1848), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1850), 1, + anon_sym_GT_GT, + ACTIONS(1854), 1, + anon_sym_AMP, + ACTIONS(1856), 1, anon_sym_CARET, + ACTIONS(1858), 1, + anon_sym_PIPE, + ACTIONS(1862), 1, anon_sym_PERCENT, + ACTIONS(1864), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1872), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1874), 1, + sym__ternary_qmark, + STATE(797), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1842), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1860), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1868), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1870), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1844), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1866), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - [19052] = 3, + ACTIONS(1814), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_BQUOTE, + [22717] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1536), 12, + ACTIONS(1633), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54220,15 +64078,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1538), 27, + ACTIONS(1635), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -54248,67 +64105,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19100] = 9, - ACTIONS(1586), 1, + [22764] = 25, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1838), 1, sym_optional_chain, - STATE(651), 1, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1886), 1, + anon_sym_GT_GT, + ACTIONS(1890), 1, + anon_sym_AMP, + ACTIONS(1892), 1, + anon_sym_CARET, + ACTIONS(1894), 1, + anon_sym_PIPE, + ACTIONS(1898), 1, + anon_sym_PERCENT, + ACTIONS(1900), 1, + anon_sym_STAR_STAR, + ACTIONS(1908), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1910), 1, + sym__ternary_qmark, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1361), 12, + ACTIONS(1878), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1888), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1896), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1363), 20, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - 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, + ACTIONS(1906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1880), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1902), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [19160] = 5, - ACTIONS(599), 1, + ACTIONS(1716), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [22855] = 5, + ACTIONS(1644), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(591), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(595), 12, + ACTIONS(1912), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1637), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54321,11 +64195,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(597), 23, + ACTIONS(1639), 21, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -54345,11 +64217,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19211] = 3, + [22906] = 5, + ACTIONS(1729), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1472), 12, + ACTIONS(1914), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1722), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54362,14 +64241,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1474), 26, - sym__automatic_semicolon, + ACTIONS(1724), 21, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -54389,11 +64263,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19258] = 3, + [22957] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(1646), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54406,14 +64280,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1486), 26, + ACTIONS(1648), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -54433,11 +64307,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19305] = 3, + [23004] = 5, + ACTIONS(718), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(1916), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(714), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54450,14 +64331,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1486), 26, - sym__automatic_semicolon, + ACTIONS(716), 21, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -54477,11 +64353,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19352] = 3, + [23055] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1488), 12, + ACTIONS(1686), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54494,14 +64370,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1490), 26, + ACTIONS(1688), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -54521,143 +64397,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19399] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - STATE(651), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1490), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [19490] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - STATE(651), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1594), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [19581] = 3, + [23102] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1400), 12, + ACTIONS(1774), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54670,14 +64414,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1402), 26, + ACTIONS(1776), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -54697,11 +64441,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19628] = 3, + [23149] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1476), 12, + ACTIONS(756), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54714,14 +64458,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1478), 26, + ACTIONS(758), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -54741,11 +64485,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19675] = 3, + [23196] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1492), 12, + ACTIONS(1714), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54758,14 +64502,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1494), 26, + ACTIONS(1716), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -54785,11 +64529,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19722] = 3, + [23243] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1496), 12, + ACTIONS(1694), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54802,14 +64546,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1498), 26, + ACTIONS(1696), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -54829,77 +64573,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19769] = 25, - ACTIONS(1586), 1, + [23290] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1739), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1741), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, - ACTIONS(1588), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1590), 1, anon_sym_DOT, - ACTIONS(1604), 1, sym_optional_chain, - ACTIONS(1612), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - STATE(651), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1498), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19860] = 3, + [23337] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1500), 12, + ACTIONS(1426), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -54912,14 +64634,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1502), 26, + ACTIONS(1428), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -54939,84 +64661,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19907] = 25, - ACTIONS(1586), 1, + [23384] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1747), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1749), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, - ACTIONS(1588), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1590), 1, anon_sym_DOT, - ACTIONS(1604), 1, sym_optional_chain, - ACTIONS(1612), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - STATE(651), 1, - sym_arguments, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [23431] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1710), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1502), 5, + ACTIONS(1712), 26, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19998] = 5, - ACTIONS(1304), 1, - anon_sym_EQ, + [23478] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1302), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1238), 12, + ACTIONS(776), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55029,9 +64766,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 21, + ACTIONS(778), 26, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55051,11 +64793,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20049] = 3, + [23525] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1504), 12, + ACTIONS(1650), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55068,14 +64810,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1506), 26, + ACTIONS(1652), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55095,11 +64837,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20096] = 3, + [23572] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(545), 12, + ACTIONS(1658), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55112,14 +64854,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(547), 26, + ACTIONS(1660), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55139,11 +64881,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20143] = 3, + [23619] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1508), 12, + ACTIONS(1577), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55156,14 +64898,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1510), 26, + ACTIONS(1579), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55183,11 +64925,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20190] = 3, + [23666] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1512), 12, + ACTIONS(1735), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55200,14 +64942,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1514), 26, + ACTIONS(1737), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55227,11 +64969,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20237] = 3, + [23713] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1380), 12, + ACTIONS(1682), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55244,14 +64986,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1382), 26, + ACTIONS(1684), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55271,16 +65013,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20284] = 5, - ACTIONS(579), 1, - sym__automatic_semicolon, + [23760] = 10, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(1820), 1, + anon_sym_LBRACK, + ACTIONS(1822), 1, + anon_sym_DOT, + ACTIONS(1838), 1, + sym_optional_chain, + ACTIONS(1900), 1, + anon_sym_STAR_STAR, + STATE(797), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(571), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(575), 12, + ACTIONS(1840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1830), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55293,35 +65045,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(577), 23, + ACTIONS(1828), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20335] = 3, + [23821] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1516), 12, + ACTIONS(1759), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55334,14 +65081,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1518), 26, + ACTIONS(1761), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55361,11 +65108,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20382] = 3, + [23868] = 21, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(1820), 1, + anon_sym_LBRACK, + ACTIONS(1822), 1, + anon_sym_DOT, + ACTIONS(1838), 1, + sym_optional_chain, + ACTIONS(1886), 1, + anon_sym_GT_GT, + ACTIONS(1890), 1, + anon_sym_AMP, + ACTIONS(1892), 1, + anon_sym_CARET, + ACTIONS(1894), 1, + anon_sym_PIPE, + ACTIONS(1898), 1, + anon_sym_PERCENT, + ACTIONS(1900), 1, + anon_sym_STAR_STAR, + STATE(797), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1878), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1888), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1904), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1906), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1880), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1902), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1828), 9, + 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_QMARK_QMARK, + anon_sym_BQUOTE, + [23951] = 5, + ACTIONS(750), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1520), 12, + ACTIONS(742), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(746), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55378,14 +65192,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1522), 26, - sym__automatic_semicolon, + ACTIONS(748), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55405,11 +65216,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20429] = 3, + [24002] = 22, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(1820), 1, + anon_sym_LBRACK, + ACTIONS(1822), 1, + anon_sym_DOT, + ACTIONS(1838), 1, + sym_optional_chain, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1886), 1, + anon_sym_GT_GT, + ACTIONS(1890), 1, + anon_sym_AMP, + ACTIONS(1892), 1, + anon_sym_CARET, + ACTIONS(1894), 1, + anon_sym_PIPE, + ACTIONS(1898), 1, + anon_sym_PERCENT, + ACTIONS(1900), 1, + anon_sym_STAR_STAR, + STATE(797), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1878), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1888), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1904), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1906), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1880), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1902), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1828), 8, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [24087] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1384), 12, + ACTIONS(786), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55422,14 +65296,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1386), 26, + ACTIONS(788), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55449,16 +65323,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20476] = 5, - ACTIONS(559), 1, - sym__automatic_semicolon, + [24134] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(551), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(555), 12, + ACTIONS(796), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55471,9 +65340,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(557), 23, + ACTIONS(798), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -55495,56 +65367,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20527] = 4, - ACTIONS(1282), 1, - anon_sym_EQ, + [24181] = 13, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(1820), 1, + anon_sym_LBRACK, + ACTIONS(1822), 1, + anon_sym_DOT, + ACTIONS(1838), 1, + sym_optional_chain, + ACTIONS(1898), 1, + anon_sym_PERCENT, + ACTIONS(1900), 1, + anon_sym_STAR_STAR, + STATE(797), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1878), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1830), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 25, + ACTIONS(1828), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20576] = 3, + [24248] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1413), 12, + ACTIONS(1694), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55557,14 +65438,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1415), 26, + ACTIONS(1696), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55584,18 +65465,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20623] = 5, - ACTIONS(1242), 1, - anon_sym_EQ, + [24295] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1309), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1238), 12, + ACTIONS(1654), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55608,9 +65482,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 21, + ACTIONS(1656), 26, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55630,16 +65509,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20674] = 5, - ACTIONS(569), 1, - sym__automatic_semicolon, + [24342] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(561), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(565), 12, + ACTIONS(1698), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55652,9 +65526,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(567), 23, + ACTIONS(1700), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -55676,55 +65553,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20725] = 3, + [24389] = 19, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(1820), 1, + anon_sym_LBRACK, + ACTIONS(1822), 1, + anon_sym_DOT, + ACTIONS(1838), 1, + sym_optional_chain, + ACTIONS(1886), 1, + anon_sym_GT_GT, + ACTIONS(1898), 1, + anon_sym_PERCENT, + ACTIONS(1900), 1, + anon_sym_STAR_STAR, + STATE(797), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(575), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(1830), 2, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(1840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1878), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1888), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1896), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(577), 26, + ACTIONS(1906), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1880), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1902), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1828), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20772] = 3, + [24468] = 5, + ACTIONS(1459), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(555), 12, + ACTIONS(1543), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1426), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55737,14 +65637,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(557), 26, - sym__automatic_semicolon, + ACTIONS(1428), 21, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55764,101 +65659,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20819] = 3, + [24519] = 25, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(1820), 1, + anon_sym_LBRACK, + ACTIONS(1822), 1, + anon_sym_DOT, + ACTIONS(1838), 1, + sym_optional_chain, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1886), 1, + anon_sym_GT_GT, + ACTIONS(1890), 1, + anon_sym_AMP, + ACTIONS(1892), 1, + anon_sym_CARET, + ACTIONS(1894), 1, + anon_sym_PIPE, + ACTIONS(1898), 1, + anon_sym_PERCENT, + ACTIONS(1900), 1, + anon_sym_STAR_STAR, + ACTIONS(1908), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1910), 1, + sym__ternary_qmark, + STATE(797), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(565), 12, + ACTIONS(1840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1878), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1888), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1896), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(567), 26, + ACTIONS(1906), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1880), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1902), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1780), 5, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_BQUOTE, + [24610] = 20, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(1820), 1, anon_sym_LBRACK, + ACTIONS(1822), 1, anon_sym_DOT, + ACTIONS(1830), 1, + anon_sym_PIPE, + ACTIONS(1838), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(1886), 1, + anon_sym_GT_GT, + ACTIONS(1890), 1, + anon_sym_AMP, + ACTIONS(1898), 1, anon_sym_PERCENT, + ACTIONS(1900), 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, - [20866] = 5, - ACTIONS(589), 1, - sym__automatic_semicolon, + STATE(797), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(581), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(585), 12, + ACTIONS(1840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1878), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1888), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1896), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(587), 23, + ACTIONS(1906), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1880), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1902), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1828), 10, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20917] = 3, + [24691] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1388), 12, + ACTIONS(1718), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55871,14 +65803,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1390), 26, + ACTIONS(1720), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55898,16 +65830,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20964] = 5, - ACTIONS(609), 1, - sym__automatic_semicolon, + [24738] = 5, + ACTIONS(1532), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(601), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(605), 12, + ACTIONS(1530), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1426), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55920,11 +65854,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(607), 23, + ACTIONS(1428), 21, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55944,11 +65876,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21015] = 3, + [24789] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(585), 12, + ACTIONS(766), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -55961,14 +65893,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(587), 26, + ACTIONS(768), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -55988,11 +65920,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21062] = 3, + [24836] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(595), 12, + ACTIONS(1770), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56005,14 +65937,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(597), 26, + ACTIONS(1772), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -56032,11 +65964,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21109] = 3, + [24883] = 5, + ACTIONS(780), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(605), 12, + ACTIONS(772), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(776), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56049,14 +65986,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(607), 26, - sym__automatic_semicolon, + ACTIONS(778), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -56076,16 +66010,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21156] = 5, - ACTIONS(539), 1, + [24934] = 25, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(1820), 1, + anon_sym_LBRACK, + ACTIONS(1822), 1, + anon_sym_DOT, + ACTIONS(1838), 1, + sym_optional_chain, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1886), 1, + anon_sym_GT_GT, + ACTIONS(1890), 1, + anon_sym_AMP, + ACTIONS(1892), 1, + anon_sym_CARET, + ACTIONS(1894), 1, + anon_sym_PIPE, + ACTIONS(1898), 1, + anon_sym_PERCENT, + ACTIONS(1900), 1, + anon_sym_STAR_STAR, + ACTIONS(1908), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1910), 1, + sym__ternary_qmark, + STATE(797), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1878), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1888), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1904), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1906), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1880), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1902), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1814), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_BQUOTE, + [25025] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(531), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(535), 12, + ACTIONS(1603), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56098,9 +66093,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(537), 23, + ACTIONS(1605), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -56122,11 +66120,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21207] = 3, + [25072] = 4, + ACTIONS(1528), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(535), 12, + ACTIONS(1426), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56139,14 +66139,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(537), 26, + ACTIONS(1428), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -56166,11 +66165,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21254] = 3, + [25121] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1417), 12, + ACTIONS(736), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56183,14 +66182,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1419), 26, + ACTIONS(738), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -56210,11 +66209,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21301] = 3, + [25168] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1480), 12, + ACTIONS(746), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56227,14 +66226,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1482), 26, + ACTIONS(748), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -56254,11 +66253,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21348] = 3, + [25215] = 5, + ACTIONS(760), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(752), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(756), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56271,14 +66275,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1486), 26, - sym__automatic_semicolon, + ACTIONS(758), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -56298,58 +66299,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21395] = 5, - ACTIONS(549), 1, - sym__automatic_semicolon, + [25266] = 21, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(1820), 1, + anon_sym_LBRACK, + ACTIONS(1822), 1, + anon_sym_DOT, + ACTIONS(1830), 1, + anon_sym_PIPE, + ACTIONS(1838), 1, + sym_optional_chain, + ACTIONS(1886), 1, + anon_sym_GT_GT, + ACTIONS(1890), 1, + anon_sym_AMP, + ACTIONS(1892), 1, + anon_sym_CARET, + ACTIONS(1898), 1, + anon_sym_PERCENT, + ACTIONS(1900), 1, + anon_sym_STAR_STAR, + STATE(797), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(541), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(545), 12, + ACTIONS(1840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1878), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1888), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1896), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(547), 23, + ACTIONS(1906), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1880), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1902), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1828), 9, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [25349] = 12, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(1820), 1, anon_sym_LBRACK, + ACTIONS(1822), 1, anon_sym_DOT, + ACTIONS(1838), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(1898), 1, anon_sym_PERCENT, + ACTIONS(1900), 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, - [21446] = 3, + STATE(797), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1484), 12, + ACTIONS(1840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1878), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1830), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -56358,41 +66394,46 @@ 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(1486), 26, + ACTIONS(1828), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21493] = 3, + [25414] = 10, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(1820), 1, + anon_sym_LBRACK, + ACTIONS(1822), 1, + anon_sym_DOT, + ACTIONS(1838), 1, + sym_optional_chain, + ACTIONS(1900), 1, + anon_sym_STAR_STAR, + STATE(797), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1524), 12, + ACTIONS(1840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1830), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56405,87 +66446,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1526), 26, + ACTIONS(1828), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21540] = 3, + [25475] = 17, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(1820), 1, + anon_sym_LBRACK, + ACTIONS(1822), 1, + anon_sym_DOT, + ACTIONS(1838), 1, + sym_optional_chain, + ACTIONS(1886), 1, + anon_sym_GT_GT, + ACTIONS(1898), 1, + anon_sym_PERCENT, + ACTIONS(1900), 1, + anon_sym_STAR_STAR, + STATE(797), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1528), 12, + ACTIONS(1840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1878), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1888), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1880), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(1902), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1830), 4, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1530), 26, + ACTIONS(1828), 12, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21587] = 4, - ACTIONS(1642), 1, - sym_regex_flags, + [25550] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1365), 14, + ACTIONS(1702), 12, anon_sym_STAR, anon_sym_in, - anon_sym_of, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -56496,11 +66540,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1367), 23, + ACTIONS(1704), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -56518,87 +66563,79 @@ 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, - [21636] = 25, - ACTIONS(1586), 1, + [25597] = 23, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1882), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(1884), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1886), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1890), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1892), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1894), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1898), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1900), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - STATE(651), 1, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1878), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1888), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1880), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1600), 5, + ACTIONS(1828), 7, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [21727] = 5, - ACTIONS(1378), 1, - anon_sym_EQ, + [25684] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1644), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1371), 12, + ACTIONS(1694), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56611,55 +66648,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1373), 21, + ACTIONS(1696), 26, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21778] = 5, - ACTIONS(1411), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1646), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1404), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1406), 21, - sym__ternary_qmark, + anon_sym_of, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -56679,18 +66675,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21829] = 5, - ACTIONS(511), 1, - anon_sym_EQ, + [25731] = 5, + ACTIONS(790), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1648), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(507), 12, + ACTIONS(782), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(786), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56703,9 +66697,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(509), 21, + ACTIONS(788), 23, sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -56725,11 +66721,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21880] = 3, + [25782] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1392), 12, + ACTIONS(1607), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56742,14 +66738,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1394), 26, + ACTIONS(1609), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -56769,18 +66765,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21927] = 5, - ACTIONS(1295), 1, - anon_sym_EQ, + [25829] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1292), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1238), 12, + ACTIONS(1662), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56793,9 +66782,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 21, + ACTIONS(1664), 26, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -56815,11 +66809,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21978] = 3, + [25876] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1351), 12, + ACTIONS(1694), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56832,14 +66826,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1353), 26, + ACTIONS(1696), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -56859,77 +66853,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22025] = 25, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - STATE(651), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1568), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [22116] = 3, + [25923] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1388), 12, + ACTIONS(726), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -56942,14 +66870,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1390), 26, + ACTIONS(728), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -56969,55 +66897,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22163] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1421), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [25970] = 25, + ACTIONS(1818), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1820), 1, anon_sym_LBRACK, + ACTIONS(1822), 1, anon_sym_DOT, + ACTIONS(1838), 1, sym_optional_chain, + ACTIONS(1882), 1, anon_sym_AMP_AMP, + ACTIONS(1884), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1886), 1, + anon_sym_GT_GT, + ACTIONS(1890), 1, + anon_sym_AMP, + ACTIONS(1892), 1, anon_sym_CARET, + ACTIONS(1894), 1, + anon_sym_PIPE, + ACTIONS(1898), 1, anon_sym_PERCENT, + ACTIONS(1900), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1908), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1910), 1, + sym__ternary_qmark, + STATE(797), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1878), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1888), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1904), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1880), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1902), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1816), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_BQUOTE, - [22210] = 3, + [26061] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1425), 12, + ACTIONS(1666), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57030,14 +66980,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1427), 26, + ACTIONS(1668), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57057,11 +67007,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22257] = 3, + [26108] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1755), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57074,14 +67024,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 26, + ACTIONS(1757), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57101,11 +67051,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22304] = 3, + [26155] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1396), 12, + ACTIONS(1670), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57118,14 +67068,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1398), 26, + ACTIONS(1672), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57145,99 +67095,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22351] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1429), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1431), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [26202] = 25, + ACTIONS(1818), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1820), 1, anon_sym_LBRACK, + ACTIONS(1822), 1, anon_sym_DOT, + ACTIONS(1838), 1, sym_optional_chain, + ACTIONS(1882), 1, anon_sym_AMP_AMP, + ACTIONS(1884), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1886), 1, + anon_sym_GT_GT, + ACTIONS(1890), 1, + anon_sym_AMP, + ACTIONS(1892), 1, anon_sym_CARET, + ACTIONS(1894), 1, + anon_sym_PIPE, + ACTIONS(1898), 1, anon_sym_PERCENT, + ACTIONS(1900), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1908), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [22398] = 3, + ACTIONS(1910), 1, + sym__ternary_qmark, + STATE(797), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1433), 12, + ACTIONS(1840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1878), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1888), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1896), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1435), 26, + ACTIONS(1906), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1880), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1902), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1834), 5, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_BQUOTE, + [26293] = 25, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(1820), 1, anon_sym_LBRACK, + ACTIONS(1822), 1, anon_sym_DOT, + ACTIONS(1838), 1, sym_optional_chain, + ACTIONS(1882), 1, anon_sym_AMP_AMP, + ACTIONS(1884), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1886), 1, + anon_sym_GT_GT, + ACTIONS(1890), 1, + anon_sym_AMP, + ACTIONS(1892), 1, anon_sym_CARET, + ACTIONS(1894), 1, + anon_sym_PIPE, + ACTIONS(1898), 1, anon_sym_PERCENT, + ACTIONS(1900), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1908), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1910), 1, + sym__ternary_qmark, + STATE(797), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1840), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1878), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1888), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1904), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1880), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1902), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1700), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_BQUOTE, - [22445] = 3, + [26384] = 4, + ACTIONS(1524), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1437), 12, + ACTIONS(1426), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57250,14 +67246,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1439), 26, + ACTIONS(1428), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57277,13 +67272,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22492] = 4, - ACTIONS(1642), 1, - sym_regex_flags, + [26433] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1365), 13, + ACTIONS(1706), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57296,12 +67289,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1367), 24, + ACTIONS(1708), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -57319,15 +67312,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, - [22541] = 3, + [26480] = 4, + ACTIONS(1876), 1, + sym_regex_flags, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1540), 12, + ACTIONS(1619), 14, anon_sym_STAR, + anon_sym_of, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -57339,14 +67336,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1542), 26, + anon_sym_instanceof, + ACTIONS(1621), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57362,81 +67358,80 @@ 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, - [22588] = 25, - ACTIONS(1586), 1, + [26529] = 25, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1846), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(1848), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1850), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1854), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1856), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1858), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1862), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1864), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(1872), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(1874), 1, sym__ternary_qmark, - STATE(651), 1, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1870), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1844), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1598), 5, + ACTIONS(1832), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_BQUOTE, - [22679] = 3, + [26620] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1444), 12, + ACTIONS(1654), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57449,14 +67444,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 26, + ACTIONS(1656), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57476,133 +67471,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22726] = 25, - ACTIONS(1586), 1, + [26667] = 5, + ACTIONS(770), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(762), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(766), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(768), 23, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1588), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1590), 1, anon_sym_DOT, - ACTIONS(1604), 1, sym_optional_chain, - ACTIONS(1612), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - STATE(651), 1, - sym_arguments, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [26718] = 5, + ACTIONS(800), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(792), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(796), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1446), 5, - sym__automatic_semicolon, + ACTIONS(798), 23, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [22817] = 15, - ACTIONS(1586), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1590), 1, anon_sym_DOT, - ACTIONS(1604), 1, sym_optional_chain, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1628), 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(1630), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [26769] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1743), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1554), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 15, + ACTIONS(1745), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22888] = 3, + [26816] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1448), 12, + ACTIONS(1674), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57615,14 +67624,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1450), 26, + ACTIONS(1676), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57642,158 +67651,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22935] = 25, - ACTIONS(1586), 1, + [26863] = 25, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1882), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(1884), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(1886), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1890), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1892), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(1894), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(1898), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1900), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(1908), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(1910), 1, sym__ternary_qmark, - STATE(651), 1, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1878), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1888), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1880), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1594), 5, + ACTIONS(1832), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_BQUOTE, - [23026] = 25, - ACTIONS(1586), 1, + [26954] = 25, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1882), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(1884), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(1886), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1890), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1892), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(1894), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(1898), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1900), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(1908), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(1910), 1, sym__ternary_qmark, - STATE(651), 1, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1878), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1888), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1880), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1402), 5, + ACTIONS(1676), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_of, anon_sym_BQUOTE, - [23117] = 10, - ACTIONS(1586), 1, + [27045] = 5, + ACTIONS(1540), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1537), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1426), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1428), 21, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(1588), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, anon_sym_DOT, - ACTIONS(1604), 1, sym_optional_chain, - ACTIONS(1630), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [27096] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(1599), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -57806,299 +67846,280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 18, + ACTIONS(1601), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23178] = 25, - ACTIONS(1586), 1, + [27143] = 25, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1882), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(1884), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(1886), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1890), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1892), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(1894), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(1898), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1900), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(1908), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(1910), 1, sym__ternary_qmark, - STATE(651), 1, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1878), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1888), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1880), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1568), 5, + ACTIONS(1708), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_BQUOTE, + [27234] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1763), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1765), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23269] = 25, - ACTIONS(1586), 1, + [27281] = 25, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1846), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(1848), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(1850), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1854), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1856), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(1858), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(1862), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1864), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(1872), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(1874), 1, sym__ternary_qmark, - STATE(651), 1, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1870), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1844), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1598), 5, + ACTIONS(1816), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_SEMI, anon_sym_of, + anon_sym_SEMI, anon_sym_BQUOTE, - [23360] = 25, - ACTIONS(1586), 1, + [27372] = 25, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1846), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(1848), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(1850), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1854), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1856), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(1858), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(1862), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1864), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(1872), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(1874), 1, sym__ternary_qmark, - STATE(651), 1, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1852), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1868), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1870), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1844), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1866), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1446), 5, + ACTIONS(1716), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_SEMI, anon_sym_of, - anon_sym_BQUOTE, - [23451] = 15, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1658), 1, - anon_sym_GT_GT, - ACTIONS(1670), 1, - anon_sym_PERCENT, - ACTIONS(1672), 1, - anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1650), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1660), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1668), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1554), 7, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1546), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, anon_sym_SEMI, - 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_BQUOTE, - [23522] = 10, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1672), 1, - anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + [27463] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(1731), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -58111,474 +68132,494 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 18, + ACTIONS(1733), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23583] = 21, - ACTIONS(1586), 1, + [27510] = 25, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1616), 1, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1886), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1890), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1892), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1894), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1898), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1900), 1, anon_sym_STAR_STAR, - STATE(651), 1, + ACTIONS(1908), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1910), 1, + sym__ternary_qmark, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1878), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1888), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1880), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 9, + ACTIONS(1712), 5, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_BQUOTE, + [27601] = 6, + ACTIONS(718), 1, + anon_sym_EQ, + ACTIONS(1916), 1, + anon_sym_of, + ACTIONS(1918), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(714), 11, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(716), 23, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23666] = 21, - ACTIONS(1586), 1, + [27653] = 27, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1658), 1, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1886), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1890), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1892), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(1894), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(1898), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1900), 1, anon_sym_STAR_STAR, - STATE(651), 1, + ACTIONS(1908), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1910), 1, + sym__ternary_qmark, + ACTIONS(1921), 1, + anon_sym_COMMA, + ACTIONS(1924), 1, + anon_sym_RBRACE, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1826), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1878), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1888), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1880), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 9, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [23749] = 22, - ACTIONS(1586), 1, + [27747] = 27, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1882), 1, anon_sym_AMP_AMP, - ACTIONS(1658), 1, + ACTIONS(1884), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1886), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1890), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1892), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(1894), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(1898), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1900), 1, anon_sym_STAR_STAR, - STATE(651), 1, + ACTIONS(1908), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1910), 1, + sym__ternary_qmark, + ACTIONS(1924), 1, + anon_sym_RBRACE, + ACTIONS(1926), 1, + anon_sym_COMMA, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1816), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1878), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1888), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1880), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 8, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [23834] = 13, - ACTIONS(1586), 1, + [27841] = 5, + ACTIONS(1929), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1670), 1, - anon_sym_PERCENT, - ACTIONS(1672), 1, - anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + ACTIONS(1932), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1426), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1668), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1554), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 17, + ACTIONS(1428), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23901] = 19, - ACTIONS(1586), 1, + [27891] = 5, + ACTIONS(1934), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1658), 1, - anon_sym_GT_GT, - ACTIONS(1670), 1, - anon_sym_PERCENT, - ACTIONS(1672), 1, - anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + ACTIONS(1937), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1554), 2, + ACTIONS(1770), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1650), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1660), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1668), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1674), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1546), 10, + ACTIONS(1772), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [23980] = 20, - ACTIONS(1554), 1, - anon_sym_PIPE, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, anon_sym_DOT, - ACTIONS(1604), 1, sym_optional_chain, - ACTIONS(1658), 1, - anon_sym_GT_GT, - ACTIONS(1662), 1, - anon_sym_AMP, - ACTIONS(1670), 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(1672), 1, anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [27941] = 6, + ACTIONS(1644), 1, + anon_sym_EQ, + ACTIONS(1912), 1, + anon_sym_of, + ACTIONS(1939), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1637), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1660), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1668), 2, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1674), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1546), 10, - sym__automatic_semicolon, + ACTIONS(1639), 23, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24061] = 21, - ACTIONS(1554), 1, - anon_sym_PIPE, - ACTIONS(1586), 1, + [27993] = 27, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1658), 1, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1886), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1890), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1892), 1, anon_sym_CARET, - ACTIONS(1670), 1, + ACTIONS(1894), 1, + anon_sym_PIPE, + ACTIONS(1898), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1900), 1, anon_sym_STAR_STAR, - STATE(651), 1, + ACTIONS(1908), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1910), 1, + sym__ternary_qmark, + ACTIONS(1942), 1, + anon_sym_COMMA, + STATE(797), 1, sym_arguments, + STATE(1379), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1878), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1888), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1944), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1880), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 9, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [24144] = 12, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1670), 1, - anon_sym_PERCENT, - ACTIONS(1672), 1, - anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + [28087] = 5, + ACTIONS(1465), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1547), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(1426), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1554), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -58587,48 +68628,43 @@ 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(1546), 17, - sym__automatic_semicolon, + ACTIONS(1428), 21, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24209] = 10, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1672), 1, - anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, + [28137] = 6, + ACTIONS(1729), 1, + anon_sym_EQ, + ACTIONS(1914), 1, + anon_sym_of, + ACTIONS(1946), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(1722), 11, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -58639,2051 +68675,1997 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 18, - sym__automatic_semicolon, + ACTIONS(1724), 23, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24270] = 17, - ACTIONS(1586), 1, + [28189] = 27, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1658), 1, + ACTIONS(1882), 1, + anon_sym_AMP_AMP, + ACTIONS(1884), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1886), 1, anon_sym_GT_GT, - ACTIONS(1670), 1, + ACTIONS(1890), 1, + anon_sym_AMP, + ACTIONS(1892), 1, + anon_sym_CARET, + ACTIONS(1894), 1, + anon_sym_PIPE, + ACTIONS(1898), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1900), 1, anon_sym_STAR_STAR, - STATE(651), 1, + ACTIONS(1908), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1910), 1, + sym__ternary_qmark, + ACTIONS(1949), 1, + anon_sym_COMMA, + ACTIONS(1952), 1, + anon_sym_RBRACE, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1826), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1878), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1888), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1652), 3, + ACTIONS(1904), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1906), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1880), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1554), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1546), 12, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - 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_BQUOTE, - [24345] = 23, - ACTIONS(1586), 1, + [28283] = 27, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1882), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(1884), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(1886), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1890), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1892), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(1894), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(1898), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1900), 1, anon_sym_STAR_STAR, - STATE(651), 1, + ACTIONS(1908), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1910), 1, + sym__ternary_qmark, + ACTIONS(1942), 1, + anon_sym_COMMA, + STATE(797), 1, sym_arguments, + STATE(1379), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1878), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1888), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1954), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1880), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 7, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [24432] = 25, - ACTIONS(1586), 1, + [28377] = 27, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1882), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(1884), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(1886), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1890), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1892), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(1894), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(1898), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1900), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(1908), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(1910), 1, sym__ternary_qmark, - STATE(651), 1, + ACTIONS(1942), 1, + anon_sym_COMMA, + STATE(797), 1, sym_arguments, + STATE(1379), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1878), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1888), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1956), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1880), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1584), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [24523] = 25, - ACTIONS(1586), 1, + [28471] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - STATE(651), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1466), 5, - sym__automatic_semicolon, + ACTIONS(1958), 4, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [24614] = 22, - ACTIONS(1586), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [28561] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1616), 1, + ACTIONS(1786), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - STATE(651), 1, + ACTIONS(1810), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1812), 1, + sym__ternary_qmark, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 8, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(1960), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [24699] = 13, - ACTIONS(1586), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + [28651] = 26, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1628), 1, + ACTIONS(1846), 1, + anon_sym_AMP_AMP, + ACTIONS(1848), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1850), 1, + anon_sym_GT_GT, + ACTIONS(1854), 1, + anon_sym_AMP, + ACTIONS(1856), 1, + anon_sym_CARET, + ACTIONS(1858), 1, + anon_sym_PIPE, + ACTIONS(1862), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1864), 1, anon_sym_STAR_STAR, - STATE(651), 1, + ACTIONS(1872), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1874), 1, + sym__ternary_qmark, + ACTIONS(1964), 1, + anon_sym_in, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1842), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1626), 2, + ACTIONS(1844), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1852), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1860), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 8, + ACTIONS(1868), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1870), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1866), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1962), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [28743] = 6, + ACTIONS(1465), 1, + anon_sym_EQ, + ACTIONS(1550), 1, + anon_sym_of, + ACTIONS(1552), 1, anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1426), 11, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 17, - sym__automatic_semicolon, + ACTIONS(1428), 23, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24766] = 25, - ACTIONS(1586), 1, + [28795] = 24, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(101), 1, + anon_sym_STAR, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(115), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(123), 1, + aux_sym_method_definition_token1, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(1969), 1, + anon_sym_LBRACE, + ACTIONS(1971), 1, + anon_sym_RBRACE, + ACTIONS(1973), 1, + anon_sym_LBRACK, + ACTIONS(1975), 1, + anon_sym_async, + ACTIONS(1979), 1, + anon_sym_static, + STATE(1019), 1, + aux_sym_export_statement_repeat1, + STATE(1097), 1, + sym_decorator, + STATE(1476), 1, + aux_sym_object_pattern_repeat1, + STATE(1499), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1977), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1981), 2, + anon_sym_get, + anon_sym_set, + STATE(1406), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1407), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1454), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1788), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(1967), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [28882] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - STATE(651), 1, + ACTIONS(1983), 1, + anon_sym_COMMA, + ACTIONS(1985), 1, + anon_sym_RPAREN, + STATE(637), 1, sym_arguments, + STATE(1224), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1490), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [24857] = 25, - ACTIONS(1586), 1, + [28975] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - STATE(651), 1, + ACTIONS(1983), 1, + anon_sym_COMMA, + ACTIONS(1987), 1, + anon_sym_RPAREN, + STATE(637), 1, sym_arguments, + STATE(1224), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1498), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [24948] = 25, - ACTIONS(1586), 1, + [29068] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - STATE(651), 1, + ACTIONS(1983), 1, + anon_sym_COMMA, + ACTIONS(1989), 1, + anon_sym_RPAREN, + STATE(637), 1, sym_arguments, + STATE(1224), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1502), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [25039] = 19, - ACTIONS(1586), 1, + [29161] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1616), 1, + ACTIONS(1784), 1, + anon_sym_AMP_AMP, + ACTIONS(1786), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(1628), 1, + ACTIONS(1792), 1, + anon_sym_AMP, + ACTIONS(1794), 1, + anon_sym_CARET, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - STATE(651), 1, + ACTIONS(1810), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1812), 1, + sym__ternary_qmark, + ACTIONS(1983), 1, + anon_sym_COMMA, + ACTIONS(1991), 1, + anon_sym_RPAREN, + STATE(637), 1, sym_arguments, + STATE(1224), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1554), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1606), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 10, - 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_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [25118] = 20, - ACTIONS(1554), 1, - anon_sym_PIPE, - ACTIONS(1586), 1, + [29254] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1616), 1, + ACTIONS(1784), 1, + anon_sym_AMP_AMP, + ACTIONS(1786), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1628), 1, + ACTIONS(1794), 1, + anon_sym_CARET, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - STATE(651), 1, + ACTIONS(1810), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1812), 1, + sym__ternary_qmark, + ACTIONS(1983), 1, + anon_sym_COMMA, + ACTIONS(1993), 1, + anon_sym_RPAREN, + STATE(637), 1, sym_arguments, + STATE(1224), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 10, - 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_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [25199] = 21, - ACTIONS(1554), 1, - anon_sym_PIPE, - ACTIONS(1586), 1, + [29347] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1616), 1, + ACTIONS(1784), 1, + anon_sym_AMP_AMP, + ACTIONS(1786), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1628), 1, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - STATE(651), 1, + ACTIONS(1810), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1812), 1, + sym__ternary_qmark, + ACTIONS(1983), 1, + anon_sym_COMMA, + ACTIONS(1995), 1, + anon_sym_RPAREN, + STATE(637), 1, sym_arguments, + STATE(1224), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 9, - 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_QMARK_QMARK, - anon_sym_BQUOTE, - [25282] = 25, - ACTIONS(1586), 1, + [29440] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - STATE(651), 1, + ACTIONS(1983), 1, + anon_sym_COMMA, + ACTIONS(1997), 1, + anon_sym_RPAREN, + STATE(637), 1, sym_arguments, + STATE(1224), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1600), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [25373] = 12, - ACTIONS(1586), 1, + [29533] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1628), 1, + ACTIONS(1784), 1, + anon_sym_AMP_AMP, + ACTIONS(1786), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, + anon_sym_AMP, + ACTIONS(1794), 1, + anon_sym_CARET, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - STATE(651), 1, + ACTIONS(1810), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1812), 1, + sym__ternary_qmark, + ACTIONS(1983), 1, + anon_sym_COMMA, + ACTIONS(1999), 1, + anon_sym_RPAREN, + STATE(637), 1, sym_arguments, + STATE(1224), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1554), 10, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1790), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 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_LT_EQ, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_BQUOTE, - [25438] = 10, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - STATE(651), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1554), 12, - anon_sym_STAR, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1546), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, + ACTIONS(1804), 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_BQUOTE, - [25499] = 17, - ACTIONS(1586), 1, + [29626] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1616), 1, + ACTIONS(1784), 1, + anon_sym_AMP_AMP, + ACTIONS(1786), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(1628), 1, + ACTIONS(1792), 1, + anon_sym_AMP, + ACTIONS(1794), 1, + anon_sym_CARET, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - STATE(651), 1, + ACTIONS(1810), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1812), 1, + sym__ternary_qmark, + ACTIONS(1983), 1, + anon_sym_COMMA, + ACTIONS(2001), 1, + anon_sym_RPAREN, + STATE(637), 1, sym_arguments, + STATE(1224), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1610), 3, + ACTIONS(1806), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1808), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1554), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1546), 12, - 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_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [25574] = 23, - ACTIONS(1586), 1, + [29719] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - STATE(651), 1, + ACTIONS(1810), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1812), 1, + sym__ternary_qmark, + ACTIONS(1983), 1, + anon_sym_COMMA, + ACTIONS(2003), 1, + anon_sym_RPAREN, + STATE(637), 1, sym_arguments, + STATE(1224), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 7, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [25661] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1452), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1454), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [29812] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, + ACTIONS(1569), 1, anon_sym_LBRACK, + ACTIONS(1571), 1, anon_sym_DOT, + ACTIONS(1587), 1, sym_optional_chain, + ACTIONS(1784), 1, anon_sym_AMP_AMP, + ACTIONS(1786), 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, - [25708] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1456), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1788), 1, anon_sym_GT_GT, + ACTIONS(1792), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1458), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1794), 1, anon_sym_CARET, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(1800), 1, anon_sym_PERCENT, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [25755] = 4, - ACTIONS(1286), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1238), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1240), 25, - sym__automatic_semicolon, + ACTIONS(1812), 1, sym__ternary_qmark, + ACTIONS(1983), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [25804] = 3, + ACTIONS(2005), 1, + anon_sym_RPAREN, + STATE(637), 1, + sym_arguments, + STATE(1224), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1460), 12, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1778), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1462), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1790), 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(1798), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1806), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1782), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1804), 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, - [25851] = 25, - ACTIONS(1586), 1, + [29905] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - STATE(651), 1, + ACTIONS(1983), 1, + anon_sym_COMMA, + ACTIONS(2007), 1, + anon_sym_RPAREN, + STATE(637), 1, sym_arguments, + STATE(1224), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1660), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1652), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1674), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1596), 5, - sym__automatic_semicolon, + [29998] = 27, + ACTIONS(910), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - anon_sym_BQUOTE, - [25942] = 25, - ACTIONS(1586), 1, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - STATE(651), 1, + ACTIONS(2009), 1, + anon_sym_RBRACK, + STATE(637), 1, sym_arguments, + STATE(1483), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1584), 5, - sym__automatic_semicolon, + [30091] = 27, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + sym_optional_chain, + ACTIONS(1784), 1, + anon_sym_AMP_AMP, + ACTIONS(1786), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, + anon_sym_AMP, + ACTIONS(1794), 1, + anon_sym_CARET, + ACTIONS(1796), 1, + anon_sym_PIPE, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1812), 1, + sym__ternary_qmark, + ACTIONS(1983), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(2011), 1, anon_sym_SEMI, - anon_sym_BQUOTE, - [26033] = 3, + STATE(637), 1, + sym_arguments, + STATE(1224), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1464), 12, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1778), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(1790), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1466), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_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(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(1782), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1804), 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, - [26080] = 25, - ACTIONS(1586), 1, + [30184] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - STATE(651), 1, + ACTIONS(1983), 1, + anon_sym_COMMA, + ACTIONS(2013), 1, + anon_sym_RPAREN, + STATE(637), 1, sym_arguments, + STATE(1224), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1466), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [26171] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1468), 12, - anon_sym_STAR, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1470), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_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(1804), 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, - [26218] = 25, - ACTIONS(1586), 1, + [30277] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - STATE(651), 1, + ACTIONS(1983), 1, + anon_sym_COMMA, + ACTIONS(2015), 1, + anon_sym_RPAREN, + STATE(637), 1, sym_arguments, + STATE(1224), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1596), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [26309] = 25, - ACTIONS(1586), 1, + [30370] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - STATE(651), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1402), 5, - sym__automatic_semicolon, + ACTIONS(2017), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_BQUOTE, - [26400] = 27, - ACTIONS(1586), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + [30459] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1684), 1, + ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(1687), 1, + ACTIONS(2019), 1, anon_sym_RBRACE, - STATE(651), 1, + STATE(637), 1, sym_arguments, + STATE(1224), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1598), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1606), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [26494] = 5, - ACTIONS(1267), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1315), 3, + [30552] = 27, + ACTIONS(910), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(1238), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1240), 21, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [26544] = 26, - ACTIONS(1586), 1, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1654), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1656), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1658), 1, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(1662), 1, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1664), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1666), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1670), 1, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(1672), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - ACTIONS(1680), 1, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1682), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1691), 1, - anon_sym_in, - STATE(651), 1, + ACTIONS(2021), 1, + anon_sym_RPAREN, + STATE(637), 1, sym_arguments, + STATE(1465), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1650), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1652), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1660), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1668), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1676), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1678), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1674), 3, + ACTIONS(1782), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1689), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_of, - [26636] = 25, - ACTIONS(1333), 1, + [30645] = 25, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1882), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1884), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1886), 1, + anon_sym_GT_GT, + ACTIONS(1890), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1892), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1894), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1898), 1, + anon_sym_PERCENT, + ACTIONS(1900), 1, + anon_sym_STAR_STAR, + ACTIONS(1908), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1910), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1878), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1888), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1836), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(1880), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1694), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [26726] = 27, - ACTIONS(1586), 1, + [30734] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1696), 1, + ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(1699), 1, - anon_sym_RBRACE, - STATE(651), 1, + ACTIONS(2023), 1, + anon_sym_RBRACK, + STATE(637), 1, sym_arguments, + STATE(1224), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1598), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1606), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [26820] = 25, - ACTIONS(1333), 1, + [30827] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - STATE(528), 1, + ACTIONS(1983), 1, + anon_sym_COMMA, + ACTIONS(2025), 1, + anon_sym_RBRACE, + STATE(637), 1, sym_arguments, + STATE(1224), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1701), 4, + [30920] = 6, + ACTIONS(1530), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(1537), 1, anon_sym_RBRACK, - [26910] = 6, - ACTIONS(1378), 1, + ACTIONS(1540), 1, anon_sym_EQ, - ACTIONS(1644), 1, - anon_sym_of, - ACTIONS(1703), 1, - anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1371), 11, + ACTIONS(1426), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -60694,11 +70676,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1373), 23, + ACTIONS(1428), 21, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -60718,18 +70698,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26962] = 6, - ACTIONS(1411), 1, + [30971] = 6, + ACTIONS(1641), 1, + anon_sym_RBRACK, + ACTIONS(1644), 1, anon_sym_EQ, - ACTIONS(1646), 1, - anon_sym_of, - ACTIONS(1706), 1, - anon_sym_in, + ACTIONS(1912), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1404), 11, + ACTIONS(1637), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -60740,11 +70721,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1406), 23, + ACTIONS(1639), 21, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -60764,61 +70743,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27014] = 6, - ACTIONS(511), 1, + [31022] = 6, + ACTIONS(1726), 1, + anon_sym_RBRACK, + ACTIONS(1729), 1, anon_sym_EQ, - ACTIONS(1648), 1, - anon_sym_of, - ACTIONS(1709), 1, - anon_sym_in, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(507), 11, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(509), 23, - sym__ternary_qmark, + ACTIONS(1914), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [27066] = 5, - ACTIONS(1712), 1, - anon_sym_LPAREN, - ACTIONS(1715), 1, - anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1722), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -60831,11 +70766,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 23, - sym__automatic_semicolon, + ACTIONS(1724), 21, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -60855,18 +70788,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27116] = 6, - ACTIONS(1267), 1, + [31073] = 6, + ACTIONS(718), 1, anon_sym_EQ, - ACTIONS(1318), 1, - anon_sym_in, - ACTIONS(1321), 1, - anon_sym_of, + ACTIONS(1767), 1, + anon_sym_RBRACK, + ACTIONS(1916), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 11, + ACTIONS(714), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -60877,11 +70811,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 23, + ACTIONS(716), 21, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -60901,2924 +70833,2847 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27168] = 27, - ACTIONS(1586), 1, + [31124] = 25, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1882), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(1884), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1886), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1890), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1892), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1894), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1898), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1900), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(1908), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(1910), 1, sym__ternary_qmark, - ACTIONS(1717), 1, - anon_sym_COMMA, - STATE(651), 1, + STATE(797), 1, sym_arguments, - STATE(1211), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1878), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1888), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1719), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1610), 3, + ACTIONS(1880), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27262] = 27, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - ACTIONS(1717), 1, - anon_sym_COMMA, - STATE(651), 1, - sym_arguments, - STATE(1211), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1721), 2, + ACTIONS(1962), 3, sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [27356] = 27, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - ACTIONS(1717), 1, anon_sym_COMMA, - STATE(651), 1, - sym_arguments, - STATE(1211), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1723), 2, - sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [27450] = 27, - ACTIONS(1586), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, + [31213] = 24, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(101), 1, + anon_sym_STAR, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(115), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(123), 1, + aux_sym_method_definition_token1, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(1969), 1, + anon_sym_LBRACE, + ACTIONS(1973), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - sym_optional_chain, - ACTIONS(1612), 1, - anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, - anon_sym_GT_GT, - ACTIONS(1620), 1, - anon_sym_AMP, - ACTIONS(1622), 1, - anon_sym_CARET, - ACTIONS(1624), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, - anon_sym_PERCENT, - ACTIONS(1630), 1, - anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - ACTIONS(1687), 1, + ACTIONS(2029), 1, anon_sym_RBRACE, - ACTIONS(1725), 1, - anon_sym_COMMA, - STATE(651), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1594), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1606), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1626), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1634), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1636), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1632), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [27544] = 5, - ACTIONS(1728), 1, - anon_sym_LPAREN, - ACTIONS(1731), 1, - anon_sym_COLON, + ACTIONS(2031), 1, + anon_sym_async, + ACTIONS(2033), 1, + anon_sym_static, + STATE(1019), 1, + aux_sym_export_statement_repeat1, + STATE(1097), 1, + sym_decorator, + STATE(1461), 1, + aux_sym_object_repeat1, + STATE(1476), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1421), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1423), 23, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [27594] = 27, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1333), 1, + ACTIONS(1977), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2035), 2, + anon_sym_get, + anon_sym_set, + STATE(1407), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1454), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1458), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1788), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(2027), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [31300] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1733), 1, - anon_sym_RBRACK, - STATE(528), 1, + ACTIONS(1983), 1, + anon_sym_COMMA, + ACTIONS(2037), 1, + anon_sym_RPAREN, + STATE(637), 1, sym_arguments, - STATE(1283), 1, - aux_sym_array_repeat1, + STATE(1224), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27687] = 27, - ACTIONS(1333), 1, + [31393] = 27, + ACTIONS(910), 1, + anon_sym_COMMA, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1737), 1, - anon_sym_RPAREN, - STATE(528), 1, + ACTIONS(2039), 1, + anon_sym_RBRACK, + STATE(637), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + STATE(1429), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27780] = 27, - ACTIONS(1333), 1, + [31486] = 27, + ACTIONS(910), 1, + anon_sym_COMMA, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1739), 1, + ACTIONS(2041), 1, anon_sym_RPAREN, - STATE(528), 1, + STATE(637), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + STATE(1455), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27873] = 27, - ACTIONS(1333), 1, + [31579] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(1741), 1, - anon_sym_RPAREN, - STATE(528), 1, + ACTIONS(2043), 1, + anon_sym_RBRACK, + STATE(637), 1, sym_arguments, - STATE(1086), 1, + STATE(1224), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27966] = 27, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1333), 1, + [31672] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1743), 1, - anon_sym_RPAREN, - STATE(528), 1, + ACTIONS(1983), 1, + anon_sym_COMMA, + ACTIONS(2045), 1, + anon_sym_RBRACE, + STATE(637), 1, sym_arguments, - STATE(1317), 1, - aux_sym_array_repeat1, + STATE(1224), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28059] = 27, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1333), 1, + [31765] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1745), 1, - anon_sym_RPAREN, - STATE(528), 1, + ACTIONS(1983), 1, + anon_sym_COMMA, + ACTIONS(2047), 1, + anon_sym_RBRACK, + STATE(637), 1, sym_arguments, - STATE(1306), 1, - aux_sym_array_repeat1, + STATE(1224), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28152] = 27, - ACTIONS(1333), 1, + [31858] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(1747), 1, - anon_sym_RPAREN, - STATE(528), 1, + ACTIONS(2049), 1, + anon_sym_SEMI, + STATE(637), 1, sym_arguments, - STATE(1086), 1, + STATE(1224), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28245] = 25, - ACTIONS(1333), 1, + [31951] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - STATE(528), 1, + ACTIONS(1983), 1, + anon_sym_COMMA, + ACTIONS(2051), 1, + anon_sym_SEMI, + STATE(637), 1, sym_arguments, + STATE(1224), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1600), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28334] = 25, - ACTIONS(1586), 1, + [32044] = 24, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(101), 1, + anon_sym_STAR, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(115), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(123), 1, + aux_sym_method_definition_token1, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(1969), 1, + anon_sym_LBRACE, + ACTIONS(1973), 1, + anon_sym_LBRACK, + ACTIONS(2055), 1, + anon_sym_RBRACE, + ACTIONS(2057), 1, + anon_sym_async, + ACTIONS(2059), 1, + anon_sym_static, + STATE(1019), 1, + aux_sym_export_statement_repeat1, + STATE(1097), 1, + sym_decorator, + STATE(1461), 1, + aux_sym_object_repeat1, + STATE(1476), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1977), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2061), 2, + anon_sym_get, + anon_sym_set, + STATE(1407), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1454), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1458), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1788), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(2053), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [32131] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - STATE(651), 1, + ACTIONS(1983), 1, + anon_sym_COMMA, + ACTIONS(2063), 1, + anon_sym_RPAREN, + STATE(637), 1, sym_arguments, + STATE(1224), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1602), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(1610), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28423] = 6, - ACTIONS(1375), 1, - anon_sym_RBRACK, - ACTIONS(1378), 1, - anon_sym_EQ, - ACTIONS(1644), 1, + [32224] = 27, + ACTIONS(910), 1, anon_sym_COMMA, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1371), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1373), 21, - sym__ternary_qmark, + ACTIONS(1567), 1, anon_sym_LPAREN, + ACTIONS(1569), 1, anon_sym_LBRACK, + ACTIONS(1571), 1, anon_sym_DOT, + ACTIONS(1587), 1, sym_optional_chain, + ACTIONS(1784), 1, anon_sym_AMP_AMP, + ACTIONS(1786), 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, - [28474] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1783), 1, - anon_sym_RBRACK, - STATE(528), 1, + ACTIONS(2065), 1, + anon_sym_RPAREN, + STATE(637), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, + STATE(1436), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28567] = 6, - ACTIONS(1408), 1, - anon_sym_RBRACK, - ACTIONS(1411), 1, - anon_sym_EQ, - ACTIONS(1646), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1404), 12, + [32317] = 24, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(101), 1, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1406), 21, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [28618] = 6, - ACTIONS(511), 1, - anon_sym_EQ, - ACTIONS(1441), 1, - anon_sym_RBRACK, - ACTIONS(1648), 1, + ACTIONS(103), 1, anon_sym_COMMA, + ACTIONS(115), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(123), 1, + aux_sym_method_definition_token1, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(1969), 1, + anon_sym_LBRACE, + ACTIONS(1973), 1, + anon_sym_LBRACK, + ACTIONS(2069), 1, + anon_sym_RBRACE, + ACTIONS(2071), 1, + anon_sym_async, + ACTIONS(2073), 1, + anon_sym_static, + STATE(1019), 1, + aux_sym_export_statement_repeat1, + STATE(1097), 1, + sym_decorator, + STATE(1461), 1, + aux_sym_object_repeat1, + STATE(1476), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(507), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(509), 21, - sym__ternary_qmark, + ACTIONS(1977), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2075), 2, + anon_sym_get, + anon_sym_set, + STATE(1407), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1454), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1458), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1788), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(2067), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [32404] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, + ACTIONS(1569), 1, anon_sym_LBRACK, + ACTIONS(1571), 1, anon_sym_DOT, + ACTIONS(1587), 1, sym_optional_chain, + ACTIONS(1784), 1, anon_sym_AMP_AMP, + ACTIONS(1786), 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, - [28669] = 27, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(1785), 1, + ACTIONS(2077), 1, anon_sym_RPAREN, - STATE(528), 1, + STATE(637), 1, sym_arguments, - STATE(1086), 1, + STATE(1224), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28762] = 25, - ACTIONS(1333), 1, + [32497] = 24, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(101), 1, + anon_sym_STAR, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(115), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(123), 1, + aux_sym_method_definition_token1, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(1969), 1, + anon_sym_LBRACE, + ACTIONS(1973), 1, + anon_sym_LBRACK, + ACTIONS(2081), 1, + anon_sym_RBRACE, + ACTIONS(2083), 1, + anon_sym_async, + ACTIONS(2085), 1, + anon_sym_static, + STATE(1019), 1, + aux_sym_export_statement_repeat1, + STATE(1097), 1, + sym_decorator, + STATE(1461), 1, + aux_sym_object_repeat1, + STATE(1476), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1977), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2087), 2, + anon_sym_get, + anon_sym_set, + STATE(1407), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1454), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1458), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1788), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(2079), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [32584] = 24, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(101), 1, + anon_sym_STAR, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(115), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(123), 1, + aux_sym_method_definition_token1, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(1969), 1, + anon_sym_LBRACE, + ACTIONS(1973), 1, + anon_sym_LBRACK, + ACTIONS(2091), 1, + anon_sym_RBRACE, + ACTIONS(2093), 1, + anon_sym_async, + ACTIONS(2095), 1, + anon_sym_static, + STATE(1019), 1, + aux_sym_export_statement_repeat1, + STATE(1097), 1, + sym_decorator, + STATE(1461), 1, + aux_sym_object_repeat1, + STATE(1476), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1977), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2097), 2, + anon_sym_get, + anon_sym_set, + STATE(1407), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1454), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1458), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1788), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(2089), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [32671] = 27, + ACTIONS(910), 1, + anon_sym_COMMA, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - STATE(528), 1, + ACTIONS(2099), 1, + anon_sym_RBRACK, + STATE(637), 1, sym_arguments, + STATE(1483), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1502), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28851] = 27, - ACTIONS(1333), 1, + [32764] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(1787), 1, - anon_sym_RPAREN, - STATE(528), 1, + ACTIONS(2101), 1, + anon_sym_RBRACK, + STATE(637), 1, sym_arguments, - STATE(1086), 1, + STATE(1224), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28944] = 27, - ACTIONS(1333), 1, + [32857] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(1789), 1, - anon_sym_SEMI, - STATE(528), 1, + ACTIONS(2103), 1, + anon_sym_RPAREN, + STATE(637), 1, sym_arguments, - STATE(1086), 1, + STATE(1224), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29037] = 27, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1333), 1, + [32950] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1791), 1, - anon_sym_RBRACK, - STATE(528), 1, + ACTIONS(1983), 1, + anon_sym_COMMA, + ACTIONS(2105), 1, + anon_sym_RPAREN, + STATE(637), 1, sym_arguments, - STATE(1355), 1, - aux_sym_array_repeat1, + STATE(1224), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29130] = 27, - ACTIONS(1333), 1, + [33043] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(1793), 1, - anon_sym_RBRACK, - STATE(528), 1, + ACTIONS(2107), 1, + anon_sym_RPAREN, + STATE(637), 1, sym_arguments, - STATE(1086), 1, + STATE(1224), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29223] = 27, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1333), 1, + [33136] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1795), 1, + ACTIONS(1983), 1, + anon_sym_COMMA, + ACTIONS(2109), 1, anon_sym_RPAREN, - STATE(528), 1, + STATE(637), 1, sym_arguments, - STATE(1367), 1, - aux_sym_array_repeat1, + STATE(1224), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29316] = 27, - ACTIONS(1333), 1, + [33229] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(1797), 1, - anon_sym_RBRACK, - STATE(528), 1, + ACTIONS(2111), 1, + anon_sym_RPAREN, + STATE(637), 1, sym_arguments, - STATE(1086), 1, + STATE(1224), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29409] = 27, - ACTIONS(1333), 1, + [33322] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(1799), 1, - anon_sym_RBRACE, - STATE(528), 1, + ACTIONS(2113), 1, + anon_sym_COLON, + STATE(637), 1, sym_arguments, - STATE(1086), 1, + STATE(1224), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29502] = 27, - ACTIONS(1333), 1, + [33415] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(1801), 1, + ACTIONS(2115), 1, anon_sym_RPAREN, - STATE(528), 1, + STATE(637), 1, sym_arguments, - STATE(1086), 1, + STATE(1224), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29595] = 27, - ACTIONS(1333), 1, + [33508] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(1803), 1, - anon_sym_RBRACK, - STATE(528), 1, + ACTIONS(2117), 1, + anon_sym_RPAREN, + STATE(637), 1, sym_arguments, - STATE(1086), 1, + STATE(1224), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29688] = 27, - ACTIONS(1333), 1, + [33601] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(1805), 1, + ACTIONS(2119), 1, anon_sym_RPAREN, - STATE(528), 1, + STATE(637), 1, sym_arguments, - STATE(1086), 1, + STATE(1224), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29781] = 27, - ACTIONS(1333), 1, + [33694] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(1807), 1, - anon_sym_COLON, - STATE(528), 1, + ACTIONS(2121), 1, + anon_sym_SEMI, + STATE(637), 1, sym_arguments, - STATE(1086), 1, + STATE(1224), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29874] = 27, - ACTIONS(1333), 1, + [33787] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(1809), 1, - anon_sym_RPAREN, - STATE(528), 1, + ACTIONS(2123), 1, + anon_sym_SEMI, + STATE(637), 1, sym_arguments, - STATE(1086), 1, + STATE(1224), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29967] = 27, - ACTIONS(1333), 1, + [33880] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(1811), 1, - anon_sym_RPAREN, - STATE(528), 1, + ACTIONS(2125), 1, + anon_sym_SEMI, + STATE(637), 1, sym_arguments, - STATE(1086), 1, + STATE(1224), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30060] = 27, - ACTIONS(1333), 1, + [33973] = 27, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1735), 1, + ACTIONS(1983), 1, anon_sym_COMMA, - ACTIONS(1813), 1, - anon_sym_SEMI, - STATE(528), 1, + ACTIONS(2127), 1, + anon_sym_RPAREN, + STATE(637), 1, sym_arguments, - STATE(1086), 1, + STATE(1224), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30153] = 25, - ACTIONS(1333), 1, + [34066] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2135), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2137), 1, + anon_sym_GT_GT, + ACTIONS(2141), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2143), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2145), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2149), 1, + anon_sym_PERCENT, + ACTIONS(2151), 1, + anon_sym_STAR_STAR, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2161), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1826), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1815), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [30242] = 27, - ACTIONS(1333), 1, + [34154] = 4, + ACTIONS(1623), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1619), 14, + anon_sym_STAR, + anon_sym_of, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_instanceof, + ACTIONS(1621), 20, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(1335), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, anon_sym_DOT, - ACTIONS(1349), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 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(1560), 1, anon_sym_STAR_STAR, - ACTIONS(1570), 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [34200] = 25, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(1820), 1, + anon_sym_LBRACK, + ACTIONS(1822), 1, + anon_sym_DOT, + ACTIONS(1838), 1, + sym_optional_chain, + ACTIONS(1882), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1884), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1886), 1, + anon_sym_GT_GT, + ACTIONS(1890), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1892), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1894), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1898), 1, + anon_sym_PERCENT, + ACTIONS(1900), 1, + anon_sym_STAR_STAR, + ACTIONS(1908), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1910), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1817), 1, - anon_sym_RPAREN, - STATE(528), 1, + STATE(797), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1878), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1888), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2163), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1880), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30335] = 25, - ACTIONS(1333), 1, + [34288] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(2171), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2173), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2177), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2179), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2181), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2185), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2187), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(2195), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(2197), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1816), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2175), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2183), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2193), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1594), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, + ACTIONS(2167), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2189), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30424] = 25, - ACTIONS(1333), 1, + [34376] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(2171), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2173), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2177), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2179), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2181), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2185), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2187), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(2195), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(2197), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1716), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2175), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2183), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2193), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1402), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, + ACTIONS(2167), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2189), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30513] = 27, - ACTIONS(1333), 1, + [34464] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2171), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2173), 1, + anon_sym_GT_GT, + ACTIONS(2177), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2179), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2181), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2185), 1, + anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR_STAR, + ACTIONS(2195), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2197), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1819), 1, - anon_sym_SEMI, - STATE(528), 1, + STATE(637), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1780), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2175), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2183), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2193), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2167), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2189), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30606] = 27, - ACTIONS(1333), 1, + [34552] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2171), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2173), 1, + anon_sym_GT_GT, + ACTIONS(2177), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2179), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2181), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2185), 1, + anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR_STAR, + ACTIONS(2195), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2197), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1821), 1, - anon_sym_RPAREN, - STATE(528), 1, + STATE(637), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1826), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2175), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2183), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2193), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2167), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2189), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30699] = 25, - ACTIONS(1333), 1, + [34640] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(2171), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2173), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2177), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2179), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2181), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2185), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2187), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(2195), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(2197), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1631), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2175), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2183), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2193), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1568), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, + ACTIONS(2167), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2189), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30788] = 25, - ACTIONS(1333), 1, + [34728] = 15, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2173), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2185), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2187), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2175), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2183), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1498), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, + ACTIONS(1830), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1828), 12, + sym__ternary_qmark, + anon_sym_LBRACE, + 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, - [30877] = 25, - ACTIONS(1333), 1, + anon_sym_BQUOTE, + [34796] = 10, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1761), 1, - anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, - anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2187), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1830), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1446), 3, + ACTIONS(1828), 15, + sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1773), 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, - [30966] = 27, - ACTIONS(1333), 1, + anon_sym_BQUOTE, + [34854] = 21, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(2173), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2177), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2179), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2181), 1, anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1823), 1, - anon_sym_RPAREN, - STATE(528), 1, + ACTIONS(2185), 1, + anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR_STAR, + STATE(637), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2175), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2183), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2193), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2167), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2189), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31059] = 27, - ACTIONS(1333), 1, + ACTIONS(1828), 6, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [34934] = 22, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2173), 1, + anon_sym_GT_GT, + ACTIONS(2177), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2179), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2181), 1, anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1825), 1, - anon_sym_RPAREN, - STATE(528), 1, + ACTIONS(2185), 1, + anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR_STAR, + STATE(637), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2175), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2183), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2193), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2167), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2189), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31152] = 15, - ACTIONS(1333), 1, + ACTIONS(1828), 5, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [35016] = 13, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1757), 1, - anon_sym_GT_GT, - ACTIONS(1769), 1, + ACTIONS(2185), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2187), 1, anon_sym_STAR_STAR, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2183), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 7, + ACTIONS(1830), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 13, + ACTIONS(1828), 14, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -63827,282 +73682,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [31221] = 27, - ACTIONS(1333), 1, + [35080] = 19, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(2173), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, + ACTIONS(2185), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(2187), 1, anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1827), 1, - anon_sym_RPAREN, - STATE(528), 1, + STATE(637), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1830), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2175), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2183), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2193), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2167), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2189), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31314] = 10, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(1335), 1, - anon_sym_LBRACK, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(1349), 1, - sym_optional_chain, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - STATE(528), 1, - sym_arguments, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1359), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1554), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1546), 16, + ACTIONS(1828), 7, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_BQUOTE, - [31373] = 21, - ACTIONS(1333), 1, + [35156] = 20, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1757), 1, + ACTIONS(1830), 1, + anon_sym_PIPE, + ACTIONS(2173), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2177), 1, anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2185), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2187), 1, anon_sym_STAR_STAR, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2175), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2183), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2193), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(2167), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2189), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 7, + ACTIONS(1828), 7, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [31454] = 22, - ACTIONS(1333), 1, + [35234] = 21, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1757), 1, + ACTIONS(1830), 1, + anon_sym_PIPE, + ACTIONS(2173), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2177), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2179), 1, anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2185), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2187), 1, anon_sym_STAR_STAR, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2175), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2183), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2193), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(2167), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2189), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 6, + ACTIONS(1828), 6, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [31537] = 13, - ACTIONS(1333), 1, + [35314] = 12, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1769), 1, + ACTIONS(2185), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2187), 1, anon_sym_STAR_STAR, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1767), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1554), 8, + ACTIONS(1830), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 15, + ACTIONS(1828), 14, sym__ternary_qmark, anon_sym_LBRACE, - anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -64115,1495 +73906,1607 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [31602] = 25, - ACTIONS(1333), 1, + [35376] = 10, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2187), 1, + anon_sym_STAR_STAR, + STATE(637), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1830), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(1761), 1, anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1828), 15, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1771), 1, - anon_sym_STAR_STAR, - ACTIONS(1779), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - STATE(528), 1, + anon_sym_instanceof, + anon_sym_BQUOTE, + [35434] = 17, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + sym_optional_chain, + ACTIONS(2173), 1, + anon_sym_GT_GT, + ACTIONS(2185), 1, + anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR_STAR, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2175), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2183), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1777), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1596), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, + ACTIONS(2167), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2189), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31691] = 27, - ACTIONS(1333), 1, + ACTIONS(1830), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1828), 9, + sym__ternary_qmark, + anon_sym_LBRACE, + 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_BQUOTE, + [35506] = 23, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2171), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2173), 1, + anon_sym_GT_GT, + ACTIONS(2177), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2179), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2181), 1, anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1829), 1, - anon_sym_RBRACE, - STATE(528), 1, + ACTIONS(2185), 1, + anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR_STAR, + STATE(637), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2175), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2183), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2193), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2167), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2189), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [31784] = 19, - ACTIONS(1333), 1, + ACTIONS(1828), 4, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [35590] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1757), 1, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2171), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2173), 1, anon_sym_GT_GT, - ACTIONS(1769), 1, + ACTIONS(2177), 1, + anon_sym_AMP, + ACTIONS(2179), 1, + anon_sym_CARET, + ACTIONS(2181), 1, + anon_sym_PIPE, + ACTIONS(2185), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2187), 1, anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + sym__ternary_qmark, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1554), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1749), 2, + ACTIONS(1834), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2175), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2183), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2193), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(2167), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2189), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 8, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [31861] = 20, - ACTIONS(1333), 1, + [35678] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1554), 1, - anon_sym_PIPE, - ACTIONS(1757), 1, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2171), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2173), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2177), 1, anon_sym_AMP, - ACTIONS(1769), 1, + ACTIONS(2179), 1, + anon_sym_CARET, + ACTIONS(2181), 1, + anon_sym_PIPE, + ACTIONS(2185), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2187), 1, anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + sym__ternary_qmark, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1676), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2175), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2183), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2193), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(2167), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2189), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 8, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [31940] = 21, - ACTIONS(1333), 1, + [35766] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1554), 1, - anon_sym_PIPE, - ACTIONS(1757), 1, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2171), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2173), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2177), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2179), 1, anon_sym_CARET, - ACTIONS(1769), 1, + ACTIONS(2181), 1, + anon_sym_PIPE, + ACTIONS(2185), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2187), 1, anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + sym__ternary_qmark, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1700), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2175), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2183), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2193), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(2167), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2189), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 7, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [32021] = 12, - ACTIONS(1333), 1, + [35854] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1769), 1, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2171), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2173), 1, + anon_sym_GT_GT, + ACTIONS(2177), 1, + anon_sym_AMP, + ACTIONS(2179), 1, + anon_sym_CARET, + ACTIONS(2181), 1, + anon_sym_PIPE, + ACTIONS(2185), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2187), 1, anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + sym__ternary_qmark, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1708), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1554), 10, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2175), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2183), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 15, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(2193), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2167), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2189), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [32084] = 10, - ACTIONS(1333), 1, + [35942] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1771), 1, + ACTIONS(2169), 1, + anon_sym_AMP_AMP, + ACTIONS(2171), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2173), 1, + anon_sym_GT_GT, + ACTIONS(2177), 1, + anon_sym_AMP, + ACTIONS(2179), 1, + anon_sym_CARET, + ACTIONS(2181), 1, + anon_sym_PIPE, + ACTIONS(2185), 1, + anon_sym_PERCENT, + ACTIONS(2187), 1, anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(2195), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2197), 1, + sym__ternary_qmark, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(1712), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2165), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(2175), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2183), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 16, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(2193), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2167), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2189), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [32143] = 27, - ACTIONS(1333), 1, + [36030] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2171), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2173), 1, + anon_sym_GT_GT, + ACTIONS(2177), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2179), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2181), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2185), 1, + anon_sym_PERCENT, + ACTIONS(2187), 1, + anon_sym_STAR_STAR, + ACTIONS(2195), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2197), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1831), 1, - anon_sym_SEMI, - STATE(528), 1, + STATE(637), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1814), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2175), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2183), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2193), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2167), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2189), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32236] = 17, - ACTIONS(1333), 1, + [36118] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1757), 1, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(1769), 1, + ACTIONS(2211), 1, + anon_sym_AMP, + ACTIONS(2213), 1, + anon_sym_CARET, + ACTIONS(2215), 1, + anon_sym_PIPE, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(2229), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2231), 1, + sym__ternary_qmark, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1832), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1751), 3, + ACTIONS(2225), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2227), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1554), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1546), 10, - sym__ternary_qmark, - anon_sym_LBRACE, - 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_BQUOTE, - [32309] = 27, - ACTIONS(1333), 1, + [36206] = 26, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1882), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1884), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1886), 1, + anon_sym_GT_GT, + ACTIONS(1890), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1892), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1894), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1898), 1, + anon_sym_PERCENT, + ACTIONS(1900), 1, + anon_sym_STAR_STAR, + ACTIONS(1908), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1910), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1833), 1, + ACTIONS(2233), 1, anon_sym_SEMI, - STATE(528), 1, + ACTIONS(2235), 1, + sym__automatic_semicolon, + STATE(797), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1840), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1878), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1888), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1904), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1906), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1880), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1902), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32402] = 23, - ACTIONS(1333), 1, + [36296] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(1810), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1812), 1, + sym__ternary_qmark, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(1924), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 5, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [32487] = 27, - ACTIONS(1333), 1, + [36384] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1835), 1, - anon_sym_RPAREN, - STATE(528), 1, + STATE(637), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1952), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1782), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1804), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [36472] = 4, + ACTIONS(1557), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1426), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + 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(1428), 22, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [32580] = 25, - ACTIONS(1333), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [36518] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(2171), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2173), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2177), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2179), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2181), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2185), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2187), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(2195), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(2197), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1832), 2, + anon_sym_LBRACE, + anon_sym_BQUOTE, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2175), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2183), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2193), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1584), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, + ACTIONS(2167), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2189), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32669] = 27, - ACTIONS(1333), 1, + [36606] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2135), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2137), 1, + anon_sym_GT_GT, + ACTIONS(2141), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2143), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2145), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2149), 1, + anon_sym_PERCENT, + ACTIONS(2151), 1, + anon_sym_STAR_STAR, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2161), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1837), 1, - anon_sym_RBRACE, - STATE(528), 1, + STATE(637), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1816), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32762] = 25, - ACTIONS(1333), 1, + [36694] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(2135), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2137), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2141), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2143), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2145), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2149), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2151), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(2161), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1716), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1466), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32851] = 27, - ACTIONS(1333), 1, + [36782] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2135), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2137), 1, + anon_sym_GT_GT, + ACTIONS(2141), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2143), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2145), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2149), 1, + anon_sym_PERCENT, + ACTIONS(2151), 1, + anon_sym_STAR_STAR, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2161), 1, sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1839), 1, - anon_sym_RPAREN, - STATE(528), 1, + STATE(637), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1780), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32944] = 27, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(1333), 1, + [36870] = 4, + ACTIONS(1561), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1426), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1428), 22, + sym__ternary_qmark, + anon_sym_of, anon_sym_LPAREN, - ACTIONS(1335), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, anon_sym_DOT, - ACTIONS(1349), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 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(1582), 1, - sym__ternary_qmark, - ACTIONS(1841), 1, - anon_sym_RBRACK, - STATE(528), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [36916] = 15, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + sym_optional_chain, + ACTIONS(2137), 1, + anon_sym_GT_GT, + ACTIONS(2149), 1, + anon_sym_PERCENT, + ACTIONS(2151), 1, + anon_sym_STAR_STAR, + STATE(637), 1, sym_arguments, - STATE(1283), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(1830), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1828), 12, + sym__ternary_qmark, + 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, - [33037] = 27, - ACTIONS(1333), 1, + anon_sym_BQUOTE, + [36984] = 10, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(2151), 1, anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1843), 1, - anon_sym_RPAREN, - STATE(528), 1, + STATE(637), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1830), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1552), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1556), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1828), 15, + sym__ternary_qmark, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [33130] = 25, - ACTIONS(1333), 1, + anon_sym_BQUOTE, + [37042] = 21, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2137), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2141), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2143), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2145), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2149), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2151), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1490), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33219] = 25, - ACTIONS(1586), 1, + ACTIONS(1828), 6, + sym__ternary_qmark, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [37122] = 22, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(2137), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2141), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2143), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(2145), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2149), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2151), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, - sym__ternary_qmark, - STATE(651), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1689), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [33308] = 6, - ACTIONS(1292), 1, - anon_sym_RBRACK, - ACTIONS(1295), 1, - anon_sym_EQ, - ACTIONS(1302), 1, - anon_sym_COMMA, + ACTIONS(1828), 5, + sym__ternary_qmark, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [37204] = 13, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + sym_optional_chain, + ACTIONS(2149), 1, + anon_sym_PERCENT, + ACTIONS(2151), 1, + anon_sym_STAR_STAR, + STATE(637), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2129), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2147), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1830), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 21, + ACTIONS(1828), 14, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + 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, - [33359] = 27, - ACTIONS(1333), 1, + [37268] = 19, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(2137), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, + ACTIONS(2149), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(2151), 1, anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - ACTIONS(1735), 1, - anon_sym_COMMA, - ACTIONS(1845), 1, - anon_sym_SEMI, - STATE(528), 1, + STATE(637), 1, sym_arguments, - STATE(1086), 1, - aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1830), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33452] = 25, - ACTIONS(1333), 1, + ACTIONS(1828), 7, + sym__ternary_qmark, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [37344] = 20, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1753), 1, - anon_sym_AMP_AMP, - ACTIONS(1755), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(1830), 1, + anon_sym_PIPE, + ACTIONS(2137), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2141), 1, anon_sym_AMP, - ACTIONS(1763), 1, - anon_sym_CARET, - ACTIONS(1765), 1, - anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2149), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2151), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, - sym__ternary_qmark, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1598), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_BQUOTE, - ACTIONS(1751), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33541] = 25, - ACTIONS(1333), 1, + ACTIONS(1828), 7, + sym__ternary_qmark, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [37422] = 21, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1851), 1, - anon_sym_AMP_AMP, - ACTIONS(1853), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(1830), 1, + anon_sym_PIPE, + ACTIONS(2137), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2141), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2143), 1, anon_sym_CARET, - ACTIONS(1863), 1, - anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2149), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2151), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, - sym__ternary_qmark, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1584), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33629] = 4, - ACTIONS(1327), 1, - anon_sym_EQ, + ACTIONS(1828), 6, + sym__ternary_qmark, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, + [37502] = 12, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + sym_optional_chain, + ACTIONS(2149), 1, + anon_sym_PERCENT, + ACTIONS(2151), 1, + anon_sym_STAR_STAR, + STATE(637), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 12, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2129), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1830), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -65612,1154 +75515,976 @@ 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(1240), 22, + ACTIONS(1828), 14, sym__ternary_qmark, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [37564] = 10, + ACTIONS(1567), 1, anon_sym_LPAREN, - anon_sym_of, + ACTIONS(1569), 1, anon_sym_LBRACK, + ACTIONS(1571), 1, anon_sym_DOT, + ACTIONS(1587), 1, sym_optional_chain, + ACTIONS(2151), 1, + anon_sym_STAR_STAR, + STATE(637), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1830), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1828), 15, + sym__ternary_qmark, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [33675] = 25, - ACTIONS(1333), 1, + [37622] = 17, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, + ACTIONS(2137), 1, anon_sym_GT_GT, - ACTIONS(1558), 1, + ACTIONS(2149), 1, anon_sym_PERCENT, - ACTIONS(1560), 1, + ACTIONS(2151), 1, anon_sym_STAR_STAR, - ACTIONS(1570), 1, - anon_sym_AMP_AMP, - ACTIONS(1572), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_AMP, - ACTIONS(1576), 1, - anon_sym_CARET, - ACTIONS(1578), 1, - anon_sym_PIPE, - ACTIONS(1580), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, - sym__ternary_qmark, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1566), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1881), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1548), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33763] = 4, - ACTIONS(1369), 1, - sym_regex_flags, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1365), 14, - anon_sym_STAR, - anon_sym_in, - anon_sym_of, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(1830), 4, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1367), 20, + ACTIONS(1828), 9, sym__ternary_qmark, + 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_BQUOTE, + [37694] = 23, + ACTIONS(1567), 1, anon_sym_LPAREN, + ACTIONS(1569), 1, anon_sym_LBRACK, + ACTIONS(1571), 1, anon_sym_DOT, + ACTIONS(1587), 1, sym_optional_chain, + ACTIONS(2133), 1, anon_sym_AMP_AMP, + ACTIONS(2135), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2137), 1, + anon_sym_GT_GT, + ACTIONS(2141), 1, + anon_sym_AMP, + ACTIONS(2143), 1, anon_sym_CARET, + ACTIONS(2145), 1, + anon_sym_PIPE, + ACTIONS(2149), 1, anon_sym_PERCENT, + ACTIONS(2151), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + STATE(637), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2129), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2139), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2147), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2131), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2153), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1828), 4, + sym__ternary_qmark, + anon_sym_COLON, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_BQUOTE, - [33809] = 24, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(99), 1, - anon_sym_STAR, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(111), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(119), 1, - aux_sym_method_definition_token1, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(1887), 1, - anon_sym_RBRACE, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(1891), 1, - anon_sym_async, - ACTIONS(1895), 1, - anon_sym_static, - STATE(915), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - STATE(1312), 1, - aux_sym_object_pattern_repeat1, - STATE(1334), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1893), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1897), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1883), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1281), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1290), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1333), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1693), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [33895] = 24, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(99), 1, - anon_sym_STAR, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(111), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(119), 1, - aux_sym_method_definition_token1, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(1889), 1, + [37778] = 25, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1901), 1, - anon_sym_RBRACE, - ACTIONS(1903), 1, - anon_sym_async, - ACTIONS(1905), 1, - anon_sym_static, - STATE(915), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - STATE(1309), 1, - aux_sym_object_repeat1, - STATE(1312), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1893), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1907), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1899), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1281), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1289), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1290), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1693), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [33981] = 25, - ACTIONS(1586), 1, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + sym_optional_chain, + ACTIONS(2133), 1, + anon_sym_AMP_AMP, + ACTIONS(2135), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2137), 1, + anon_sym_GT_GT, + ACTIONS(2141), 1, + anon_sym_AMP, + ACTIONS(2143), 1, + anon_sym_CARET, + ACTIONS(2145), 1, + anon_sym_PIPE, + ACTIONS(2149), 1, + anon_sym_PERCENT, + ACTIONS(2151), 1, + anon_sym_STAR_STAR, + ACTIONS(2159), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2161), 1, + sym__ternary_qmark, + STATE(637), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1834), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2129), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2139), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2147), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2157), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2131), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2153), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37866] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(2135), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(2137), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2141), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2143), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(2145), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2149), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2151), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(2161), 1, sym__ternary_qmark, - STATE(651), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1676), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1909), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1610), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34069] = 24, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(99), 1, - anon_sym_STAR, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(111), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(119), 1, - aux_sym_method_definition_token1, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(1913), 1, - anon_sym_RBRACE, - ACTIONS(1915), 1, - anon_sym_async, - ACTIONS(1917), 1, - anon_sym_static, - STATE(915), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - STATE(1312), 1, - aux_sym_object_pattern_repeat1, - STATE(1334), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1893), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1919), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1911), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1281), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1290), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1333), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1693), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [34155] = 24, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(99), 1, - anon_sym_STAR, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(111), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(119), 1, - aux_sym_method_definition_token1, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(1923), 1, - anon_sym_RBRACE, - ACTIONS(1925), 1, - anon_sym_async, - ACTIONS(1927), 1, - anon_sym_static, - STATE(915), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - STATE(1312), 1, - aux_sym_object_pattern_repeat1, - STATE(1334), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1893), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1929), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1921), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1281), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1290), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1333), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1693), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [34241] = 24, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(99), 1, - anon_sym_STAR, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(111), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(119), 1, - aux_sym_method_definition_token1, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(1933), 1, - anon_sym_RBRACE, - ACTIONS(1935), 1, - anon_sym_async, - ACTIONS(1937), 1, - anon_sym_static, - STATE(915), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - STATE(1312), 1, - aux_sym_object_pattern_repeat1, - STATE(1334), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1893), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1939), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1931), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1281), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1290), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1333), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1693), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [34327] = 24, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(99), 1, - anon_sym_STAR, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(111), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(119), 1, - aux_sym_method_definition_token1, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(1889), 1, + [37954] = 25, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1943), 1, - anon_sym_RBRACE, - ACTIONS(1945), 1, - anon_sym_async, - ACTIONS(1947), 1, - anon_sym_static, - STATE(915), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - STATE(1312), 1, - aux_sym_object_pattern_repeat1, - STATE(1334), 1, - aux_sym_object_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1893), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1949), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1941), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1281), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1290), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1333), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1693), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [34413] = 6, - ACTIONS(1242), 1, - anon_sym_EQ, - ACTIONS(1318), 1, - anon_sym_in, - ACTIONS(1321), 1, - anon_sym_of, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + sym_optional_chain, + ACTIONS(2133), 1, + anon_sym_AMP_AMP, + ACTIONS(2135), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2137), 1, + anon_sym_GT_GT, + ACTIONS(2141), 1, + anon_sym_AMP, + ACTIONS(2143), 1, + anon_sym_CARET, + ACTIONS(2145), 1, + anon_sym_PIPE, + ACTIONS(2149), 1, + anon_sym_PERCENT, + ACTIONS(2151), 1, + anon_sym_STAR_STAR, + ACTIONS(2159), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2161), 1, + sym__ternary_qmark, + STATE(637), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1238), 11, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1700), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2129), 2, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(2139), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2147), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1240), 21, - sym__ternary_qmark, + ACTIONS(2157), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2131), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2153), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38042] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, + ACTIONS(1569), 1, anon_sym_LBRACK, + ACTIONS(1571), 1, anon_sym_DOT, + ACTIONS(1587), 1, sym_optional_chain, + ACTIONS(2133), 1, anon_sym_AMP_AMP, + ACTIONS(2135), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(2137), 1, + anon_sym_GT_GT, + ACTIONS(2141), 1, + anon_sym_AMP, + ACTIONS(2143), 1, anon_sym_CARET, + ACTIONS(2145), 1, + anon_sym_PIPE, + ACTIONS(2149), 1, anon_sym_PERCENT, + ACTIONS(2151), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(2161), 1, + sym__ternary_qmark, + STATE(637), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(1708), 2, + anon_sym_COLON, anon_sym_BQUOTE, - [34463] = 26, - ACTIONS(1586), 1, + ACTIONS(2129), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2139), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2147), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2155), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2157), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2131), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2153), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38130] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1612), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(1614), 1, + ACTIONS(2135), 1, anon_sym_PIPE_PIPE, - ACTIONS(1616), 1, + ACTIONS(2137), 1, anon_sym_GT_GT, - ACTIONS(1620), 1, + ACTIONS(2141), 1, anon_sym_AMP, - ACTIONS(1622), 1, + ACTIONS(2143), 1, anon_sym_CARET, - ACTIONS(1624), 1, + ACTIONS(2145), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(2149), 1, anon_sym_PERCENT, - ACTIONS(1630), 1, + ACTIONS(2151), 1, anon_sym_STAR_STAR, - ACTIONS(1638), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(1640), 1, + ACTIONS(2161), 1, sym__ternary_qmark, - ACTIONS(1951), 1, - anon_sym_SEMI, - ACTIONS(1953), 1, - sym__automatic_semicolon, - STATE(651), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1606), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1608), 2, + ACTIONS(1712), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1618), 2, + ACTIONS(2139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1626), 2, + ACTIONS(2147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1634), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1636), 2, + ACTIONS(2157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1610), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1632), 3, + ACTIONS(2153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34553] = 25, - ACTIONS(1333), 1, + [38218] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2135), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2137), 1, + anon_sym_GT_GT, + ACTIONS(2141), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2143), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2145), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2149), 1, + anon_sym_PERCENT, + ACTIONS(2151), 1, + anon_sym_STAR_STAR, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2161), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1814), 2, + anon_sym_COLON, + anon_sym_BQUOTE, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1687), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1548), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34641] = 25, - ACTIONS(1333), 1, + [38306] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(1788), 1, + anon_sym_GT_GT, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(1800), 1, + anon_sym_PERCENT, + ACTIONS(1802), 1, + anon_sym_STAR_STAR, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1699), 2, + ACTIONS(2237), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1548), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34729] = 25, - ACTIONS(1333), 1, + [38394] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2211), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, + ACTIONS(2229), 1, anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, + ACTIONS(2231), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1594), 2, + ACTIONS(1816), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34817] = 25, - ACTIONS(1333), 1, + [38482] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2211), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, + ACTIONS(2229), 1, anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, + ACTIONS(2231), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1402), 2, + ACTIONS(1716), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34905] = 25, - ACTIONS(1333), 1, + [38570] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2211), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, + ACTIONS(2229), 1, anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, + ACTIONS(2231), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1568), 2, + ACTIONS(1780), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34993] = 25, - ACTIONS(1333), 1, + [38658] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2211), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, + ACTIONS(2229), 1, anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, + ACTIONS(2231), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1598), 2, + ACTIONS(1826), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35081] = 25, - ACTIONS(1333), 1, + [38746] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2211), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, + ACTIONS(2229), 1, anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, + ACTIONS(2231), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1446), 2, + ACTIONS(1631), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35169] = 15, - ACTIONS(1333), 1, + [38834] = 15, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1855), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(1867), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 7, + ACTIONS(1830), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -66767,7 +76492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 12, + ACTIONS(1828), 12, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, @@ -66780,26 +76505,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [35237] = 10, - ACTIONS(1333), 1, + [38902] = 10, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1869), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(1830), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -66812,7 +76537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 15, + ACTIONS(1828), 15, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, @@ -66828,153 +76553,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [35295] = 21, - ACTIONS(1333), 1, + [38960] = 21, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1855), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2211), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 6, + ACTIONS(1828), 6, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [35375] = 22, - ACTIONS(1333), 1, + [39040] = 22, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(1855), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2211), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 5, + ACTIONS(1828), 5, sym__ternary_qmark, anon_sym_of, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [35457] = 13, - ACTIONS(1333), 1, + [39122] = 13, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1867), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1865), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 8, + ACTIONS(1830), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -66983,7 +76708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 14, + ACTIONS(1828), 14, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, @@ -66998,56 +76723,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_BQUOTE, - [35521] = 19, - ACTIONS(1333), 1, + [39186] = 19, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1855), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(1867), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1554), 2, + ACTIONS(1830), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1847), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 7, + ACTIONS(1828), 7, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, @@ -67055,57 +76780,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [35597] = 20, - ACTIONS(1333), 1, + [39262] = 20, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1554), 1, + ACTIONS(1830), 1, anon_sym_PIPE, - ACTIONS(1855), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2211), 1, anon_sym_AMP, - ACTIONS(1867), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 7, + ACTIONS(1828), 7, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, @@ -67113,90 +76838,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [35675] = 21, - ACTIONS(1333), 1, + [39340] = 21, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1554), 1, + ACTIONS(1830), 1, anon_sym_PIPE, - ACTIONS(1855), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2211), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(1867), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 6, + ACTIONS(1828), 6, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_BQUOTE, - [35755] = 12, - ACTIONS(1333), 1, + [39420] = 12, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1867), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1554), 10, + ACTIONS(1830), 10, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1828), 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [39482] = 10, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + sym_optional_chain, + ACTIONS(2221), 1, + anon_sym_STAR_STAR, + STATE(637), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1830), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -67205,9 +76976,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(1546), 14, + ACTIONS(1828), 15, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, @@ -67215,3454 +76987,3734 @@ 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, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_BQUOTE, + [39540] = 17, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + sym_optional_chain, + ACTIONS(2207), 1, + anon_sym_GT_GT, + ACTIONS(2219), 1, + anon_sym_PERCENT, + ACTIONS(2221), 1, + anon_sym_STAR_STAR, + STATE(637), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2199), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2209), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2201), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2223), 3, anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1830), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1828), 9, + sym__ternary_qmark, + 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_BQUOTE, + [39612] = 23, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1569), 1, + anon_sym_LBRACK, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(1587), 1, + sym_optional_chain, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2207), 1, + anon_sym_GT_GT, + ACTIONS(2211), 1, + anon_sym_AMP, + ACTIONS(2213), 1, + anon_sym_CARET, + ACTIONS(2215), 1, + anon_sym_PIPE, + ACTIONS(2219), 1, + anon_sym_PERCENT, + ACTIONS(2221), 1, + anon_sym_STAR_STAR, + STATE(637), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1589), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(2199), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2209), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2217), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2225), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2201), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2223), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1828), 4, + sym__ternary_qmark, + anon_sym_of, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_BQUOTE, - [35817] = 10, - ACTIONS(1333), 1, + [39696] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1869), 1, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2207), 1, + anon_sym_GT_GT, + ACTIONS(2211), 1, + anon_sym_AMP, + ACTIONS(2213), 1, + anon_sym_CARET, + ACTIONS(2215), 1, + anon_sym_PIPE, + ACTIONS(2219), 1, + anon_sym_PERCENT, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(2229), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2231), 1, + sym__ternary_qmark, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1554), 12, + ACTIONS(1834), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(2199), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + ACTIONS(2209), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1546), 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_LT_EQ, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(2201), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2223), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_BQUOTE, - [35875] = 17, - ACTIONS(1333), 1, + [39784] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1855), 1, + ACTIONS(2203), 1, + anon_sym_AMP_AMP, + ACTIONS(2205), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(1867), 1, + ACTIONS(2211), 1, + anon_sym_AMP, + ACTIONS(2213), 1, + anon_sym_CARET, + ACTIONS(2215), 1, + anon_sym_PIPE, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(2229), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2231), 1, + sym__ternary_qmark, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, + ACTIONS(1676), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1849), 3, + ACTIONS(2225), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2227), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1554), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1546), 9, - sym__ternary_qmark, - 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_BQUOTE, - [35947] = 23, - ACTIONS(1333), 1, + [39872] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2211), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - STATE(528), 1, + ACTIONS(2229), 1, + anon_sym_QMARK_QMARK, + ACTIONS(2231), 1, + sym__ternary_qmark, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, + ACTIONS(1700), 2, + anon_sym_of, + anon_sym_BQUOTE, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1546), 4, - sym__ternary_qmark, - anon_sym_of, - anon_sym_QMARK_QMARK, - anon_sym_BQUOTE, - [36031] = 25, - ACTIONS(1333), 1, + [39960] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2211), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, + ACTIONS(2229), 1, anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, + ACTIONS(2231), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1466), 2, + ACTIONS(1708), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36119] = 25, - ACTIONS(1333), 1, + [40048] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2211), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, + ACTIONS(2229), 1, anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, + ACTIONS(2231), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1490), 2, + ACTIONS(1712), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2201), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36207] = 25, - ACTIONS(1333), 1, + [40136] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(2207), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2211), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2219), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2221), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, + ACTIONS(2229), 1, anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, + ACTIONS(2231), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1498), 2, + ACTIONS(1814), 2, anon_sym_of, anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2201), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2223), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [40224] = 6, + ACTIONS(1459), 1, + anon_sym_EQ, + ACTIONS(1550), 1, + anon_sym_of, + ACTIONS(1552), 1, anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1426), 11, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + 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(1428), 21, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [36295] = 25, - ACTIONS(1333), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [40274] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(2135), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(2137), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2141), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2143), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2145), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2149), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2151), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, + ACTIONS(2161), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1502), 2, - anon_sym_of, + ACTIONS(1832), 2, + anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36383] = 25, - ACTIONS(1333), 1, + [40362] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(2135), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(2137), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2141), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2143), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2145), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2149), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2151), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, + ACTIONS(2161), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1600), 2, - anon_sym_of, + ACTIONS(1631), 2, + anon_sym_COLON, anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36471] = 25, - ACTIONS(1333), 1, + [40450] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1851), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(2135), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(2137), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(2141), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(2143), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(2145), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(2149), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(2151), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, + ACTIONS(2161), 1, sym__ternary_qmark, - STATE(528), 1, + ACTIONS(2239), 1, + anon_sym_COLON, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1596), 2, - anon_sym_of, - anon_sym_BQUOTE, - ACTIONS(1847), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1857), 2, + ACTIONS(2139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(2147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(2157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1849), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1871), 3, + ACTIONS(2153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36559] = 25, - ACTIONS(1333), 1, + [40537] = 21, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(101), 1, + anon_sym_STAR, + ACTIONS(115), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(123), 1, + aux_sym_method_definition_token1, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(1969), 1, + anon_sym_LBRACE, + ACTIONS(1973), 1, + anon_sym_LBRACK, + ACTIONS(2246), 1, + anon_sym_async, + ACTIONS(2248), 1, + anon_sym_static, + STATE(1019), 1, + aux_sym_export_statement_repeat1, + STATE(1097), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1977), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2243), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2250), 2, + anon_sym_get, + anon_sym_set, + STATE(1407), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1514), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1516), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1788), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(2241), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [40616] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(2135), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2137), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2141), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2143), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2145), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2149), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2151), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(2161), 1, sym__ternary_qmark, - ACTIONS(1955), 1, + ACTIONS(2252), 1, anon_sym_COLON, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36646] = 25, - ACTIONS(1333), 1, + [40703] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(2169), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(2171), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2173), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2177), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2179), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2181), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2185), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2187), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(2195), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(2197), 1, sym__ternary_qmark, - ACTIONS(1957), 1, + ACTIONS(2254), 1, anon_sym_LBRACE, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2165), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2175), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2183), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2191), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2193), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(2167), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2189), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36733] = 25, - ACTIONS(1333), 1, + [40790] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(2135), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2137), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2141), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2143), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2145), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2149), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2151), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(2161), 1, sym__ternary_qmark, - ACTIONS(1959), 1, + ACTIONS(2256), 1, anon_sym_COLON, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36820] = 25, - ACTIONS(1333), 1, + [40877] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(2135), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2137), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2141), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2143), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2145), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2149), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2151), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(2161), 1, sym__ternary_qmark, - ACTIONS(1961), 1, + ACTIONS(2258), 1, anon_sym_COLON, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36907] = 25, - ACTIONS(1333), 1, + [40964] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2135), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2137), 1, + anon_sym_GT_GT, + ACTIONS(2141), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2143), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2145), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2149), 1, + anon_sym_PERCENT, + ACTIONS(2151), 1, + anon_sym_STAR_STAR, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2161), 1, sym__ternary_qmark, - ACTIONS(1963), 1, - anon_sym_RBRACK, - STATE(528), 1, + ACTIONS(2260), 1, + anon_sym_COLON, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36994] = 25, - ACTIONS(1333), 1, + [41051] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1965), 1, - anon_sym_COLON, - STATE(528), 1, + ACTIONS(2262), 1, + anon_sym_RBRACK, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(1782), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37081] = 26, - ACTIONS(1333), 1, + [41138] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1689), 1, - anon_sym_of, - ACTIONS(1851), 1, + ACTIONS(1784), 1, anon_sym_AMP_AMP, - ACTIONS(1853), 1, + ACTIONS(1786), 1, anon_sym_PIPE_PIPE, - ACTIONS(1855), 1, + ACTIONS(1788), 1, anon_sym_GT_GT, - ACTIONS(1859), 1, + ACTIONS(1792), 1, anon_sym_AMP, - ACTIONS(1861), 1, + ACTIONS(1794), 1, anon_sym_CARET, - ACTIONS(1863), 1, + ACTIONS(1796), 1, anon_sym_PIPE, - ACTIONS(1867), 1, + ACTIONS(1800), 1, anon_sym_PERCENT, - ACTIONS(1869), 1, + ACTIONS(1802), 1, anon_sym_STAR_STAR, - ACTIONS(1877), 1, + ACTIONS(1810), 1, anon_sym_QMARK_QMARK, - ACTIONS(1879), 1, + ACTIONS(1812), 1, sym__ternary_qmark, - ACTIONS(1967), 1, - anon_sym_in, - STATE(528), 1, + ACTIONS(2264), 1, + anon_sym_RBRACK, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1847), 2, + ACTIONS(1778), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1849), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1857), 2, + ACTIONS(1790), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1865), 2, + ACTIONS(1798), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1873), 2, + ACTIONS(1806), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1875), 2, + ACTIONS(1808), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1871), 3, + ACTIONS(1782), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1804), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37170] = 25, - ACTIONS(1333), 1, + [41225] = 25, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(2135), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2137), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2141), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2143), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2145), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2149), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2151), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(2161), 1, sym__ternary_qmark, - ACTIONS(1970), 1, + ACTIONS(2266), 1, anon_sym_COLON, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37257] = 25, - ACTIONS(1333), 1, + [41312] = 26, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1550), 1, - anon_sym_GT_GT, - ACTIONS(1558), 1, - anon_sym_PERCENT, - ACTIONS(1560), 1, - anon_sym_STAR_STAR, - ACTIONS(1570), 1, + ACTIONS(1962), 1, + anon_sym_of, + ACTIONS(2203), 1, anon_sym_AMP_AMP, - ACTIONS(1572), 1, + ACTIONS(2205), 1, anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, + ACTIONS(2207), 1, + anon_sym_GT_GT, + ACTIONS(2211), 1, anon_sym_AMP, - ACTIONS(1576), 1, + ACTIONS(2213), 1, anon_sym_CARET, - ACTIONS(1578), 1, + ACTIONS(2215), 1, anon_sym_PIPE, - ACTIONS(1580), 1, + ACTIONS(2219), 1, + anon_sym_PERCENT, + ACTIONS(2221), 1, + anon_sym_STAR_STAR, + ACTIONS(2229), 1, anon_sym_QMARK_QMARK, - ACTIONS(1582), 1, + ACTIONS(2231), 1, sym__ternary_qmark, - ACTIONS(1972), 1, - anon_sym_RBRACK, - STATE(528), 1, + ACTIONS(2268), 1, + anon_sym_in, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1544), 2, + ACTIONS(2199), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1552), 2, + ACTIONS(2201), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2209), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1556), 2, + ACTIONS(2217), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1564), 2, + ACTIONS(2225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1566), 2, + ACTIONS(2227), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1548), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1562), 3, + ACTIONS(2223), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37344] = 21, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(99), 1, - anon_sym_STAR, - ACTIONS(111), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(119), 1, - aux_sym_method_definition_token1, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(1889), 1, - anon_sym_LBRACK, - ACTIONS(1979), 1, - anon_sym_async, - ACTIONS(1981), 1, - anon_sym_static, - STATE(915), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1893), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1976), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1983), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1974), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1290), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1421), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1430), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1693), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [37422] = 24, - ACTIONS(1333), 1, + [41401] = 24, + ACTIONS(1567), 1, anon_sym_LPAREN, - ACTIONS(1335), 1, + ACTIONS(1569), 1, anon_sym_LBRACK, - ACTIONS(1337), 1, + ACTIONS(1571), 1, anon_sym_DOT, - ACTIONS(1349), 1, + ACTIONS(1587), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(2135), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2137), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2141), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2143), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2145), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2149), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2151), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(2161), 1, sym__ternary_qmark, - STATE(528), 1, + STATE(637), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37506] = 24, - ACTIONS(1586), 1, + [41485] = 24, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, + ACTIONS(1820), 1, anon_sym_LBRACK, - ACTIONS(1590), 1, + ACTIONS(1822), 1, anon_sym_DOT, - ACTIONS(1604), 1, + ACTIONS(1838), 1, sym_optional_chain, - ACTIONS(1753), 1, + ACTIONS(2133), 1, anon_sym_AMP_AMP, - ACTIONS(1755), 1, + ACTIONS(2135), 1, anon_sym_PIPE_PIPE, - ACTIONS(1757), 1, + ACTIONS(2137), 1, anon_sym_GT_GT, - ACTIONS(1761), 1, + ACTIONS(2141), 1, anon_sym_AMP, - ACTIONS(1763), 1, + ACTIONS(2143), 1, anon_sym_CARET, - ACTIONS(1765), 1, + ACTIONS(2145), 1, anon_sym_PIPE, - ACTIONS(1769), 1, + ACTIONS(2149), 1, anon_sym_PERCENT, - ACTIONS(1771), 1, + ACTIONS(2151), 1, anon_sym_STAR_STAR, - ACTIONS(1779), 1, + ACTIONS(2159), 1, anon_sym_QMARK_QMARK, - ACTIONS(1781), 1, + ACTIONS(2161), 1, sym__ternary_qmark, - STATE(651), 1, + STATE(797), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1359), 2, + ACTIONS(1589), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1749), 2, + ACTIONS(2129), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1759), 2, + ACTIONS(2139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1767), 2, + ACTIONS(2147), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1775), 2, + ACTIONS(2155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1777), 2, + ACTIONS(2157), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1751), 3, + ACTIONS(2131), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1773), 3, + ACTIONS(2153), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37590] = 20, - ACTIONS(91), 1, + [41569] = 20, + ACTIONS(93), 1, anon_sym_AT, - ACTIONS(99), 1, + ACTIONS(101), 1, anon_sym_STAR, - ACTIONS(119), 1, + ACTIONS(123), 1, aux_sym_method_definition_token1, - ACTIONS(702), 1, + ACTIONS(914), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(854), 1, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1987), 1, + ACTIONS(2273), 1, anon_sym_COMMA, - ACTIONS(1989), 1, + ACTIONS(2275), 1, anon_sym_RBRACE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(1993), 1, + ACTIONS(2279), 1, anon_sym_async, - ACTIONS(1997), 1, + ACTIONS(2283), 1, anon_sym_static, - STATE(915), 1, + STATE(1019), 1, aux_sym_export_statement_repeat1, - STATE(1006), 1, + STATE(1097), 1, sym_decorator, - STATE(1292), 1, + STATE(1449), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1995), 2, + ACTIONS(2281), 2, sym_number, sym_private_property_identifier, - ACTIONS(1999), 2, + ACTIONS(2285), 2, anon_sym_get, anon_sym_set, - ACTIONS(1985), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1291), 3, + STATE(1402), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1301), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [37660] = 21, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2003), 1, - anon_sym_STAR, - ACTIONS(2005), 1, - anon_sym_RBRACE, - ACTIONS(2007), 1, - anon_sym_SEMI, - ACTIONS(2009), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - anon_sym_DQUOTE, - ACTIONS(2013), 1, - anon_sym_SQUOTE, - ACTIONS(2015), 1, - anon_sym_async, - ACTIONS(2019), 1, - anon_sym_static, - ACTIONS(2021), 1, - aux_sym_method_definition_token1, - STATE(876), 1, - aux_sym_class_body_repeat1, - STATE(910), 1, - aux_sym_export_statement_repeat1, - STATE(958), 1, - sym_method_definition, - STATE(971), 1, - sym_class_static_block, - STATE(1006), 1, - sym_decorator, - STATE(1399), 1, - sym_field_definition, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2017), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2023), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2001), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1130), 3, + STATE(1448), 3, sym_string, sym__property_name, sym_computed_property_name, - [37731] = 21, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2003), 1, - anon_sym_STAR, - ACTIONS(2009), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - anon_sym_DQUOTE, - ACTIONS(2013), 1, - anon_sym_SQUOTE, - ACTIONS(2015), 1, - anon_sym_async, - ACTIONS(2019), 1, - anon_sym_static, - ACTIONS(2021), 1, - aux_sym_method_definition_token1, - ACTIONS(2025), 1, - anon_sym_RBRACE, - ACTIONS(2027), 1, - anon_sym_SEMI, - STATE(872), 1, - aux_sym_class_body_repeat1, - STATE(910), 1, - aux_sym_export_statement_repeat1, - STATE(958), 1, - sym_method_definition, - STATE(971), 1, - sym_class_static_block, - STATE(1006), 1, - sym_decorator, - STATE(1399), 1, - sym_field_definition, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2017), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2023), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2001), 3, + ACTIONS(2271), 4, anon_sym_export, anon_sym_let, + anon_sym_await, sym_identifier, - STATE(1130), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [37802] = 21, - ACTIONS(91), 1, + [41640] = 21, + ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2003), 1, + ACTIONS(2289), 1, anon_sym_STAR, - ACTIONS(2007), 1, - anon_sym_SEMI, - ACTIONS(2009), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - anon_sym_DQUOTE, - ACTIONS(2013), 1, - anon_sym_SQUOTE, - ACTIONS(2015), 1, - anon_sym_async, - ACTIONS(2019), 1, - anon_sym_static, - ACTIONS(2021), 1, - aux_sym_method_definition_token1, - ACTIONS(2029), 1, + ACTIONS(2291), 1, anon_sym_RBRACE, - STATE(876), 1, - aux_sym_class_body_repeat1, - STATE(910), 1, - aux_sym_export_statement_repeat1, - STATE(958), 1, - sym_method_definition, - STATE(971), 1, - sym_class_static_block, - STATE(1006), 1, - sym_decorator, - STATE(1399), 1, - sym_field_definition, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2017), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2023), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2001), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1130), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [37873] = 21, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2003), 1, - anon_sym_STAR, - ACTIONS(2007), 1, + ACTIONS(2293), 1, anon_sym_SEMI, - ACTIONS(2009), 1, + ACTIONS(2295), 1, anon_sym_LBRACK, - ACTIONS(2011), 1, + ACTIONS(2297), 1, anon_sym_DQUOTE, - ACTIONS(2013), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(2015), 1, + ACTIONS(2301), 1, anon_sym_async, - ACTIONS(2019), 1, + ACTIONS(2305), 1, anon_sym_static, - ACTIONS(2021), 1, + ACTIONS(2307), 1, aux_sym_method_definition_token1, - ACTIONS(2031), 1, - anon_sym_RBRACE, - STATE(876), 1, + STATE(985), 1, aux_sym_class_body_repeat1, - STATE(910), 1, + STATE(1025), 1, aux_sym_export_statement_repeat1, - STATE(958), 1, + STATE(1071), 1, sym_method_definition, - STATE(971), 1, + STATE(1080), 1, sym_class_static_block, - STATE(1006), 1, + STATE(1097), 1, sym_decorator, - STATE(1399), 1, + STATE(1526), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2017), 2, + ACTIONS(2303), 2, sym_number, sym_private_property_identifier, - ACTIONS(2023), 2, + ACTIONS(2309), 2, anon_sym_get, anon_sym_set, - ACTIONS(2001), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1130), 3, + STATE(1228), 3, sym_string, sym__property_name, sym_computed_property_name, - [37944] = 21, - ACTIONS(91), 1, + ACTIONS(2287), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [41712] = 21, + ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2003), 1, + ACTIONS(2289), 1, anon_sym_STAR, - ACTIONS(2009), 1, + ACTIONS(2295), 1, anon_sym_LBRACK, - ACTIONS(2011), 1, + ACTIONS(2297), 1, anon_sym_DQUOTE, - ACTIONS(2013), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(2015), 1, + ACTIONS(2301), 1, anon_sym_async, - ACTIONS(2019), 1, + ACTIONS(2305), 1, anon_sym_static, - ACTIONS(2021), 1, + ACTIONS(2307), 1, aux_sym_method_definition_token1, - ACTIONS(2033), 1, + ACTIONS(2311), 1, anon_sym_RBRACE, - ACTIONS(2035), 1, + ACTIONS(2313), 1, anon_sym_SEMI, - STATE(873), 1, + STATE(984), 1, aux_sym_class_body_repeat1, - STATE(910), 1, + STATE(1025), 1, aux_sym_export_statement_repeat1, - STATE(958), 1, + STATE(1071), 1, sym_method_definition, - STATE(971), 1, + STATE(1080), 1, sym_class_static_block, - STATE(1006), 1, + STATE(1097), 1, sym_decorator, - STATE(1399), 1, + STATE(1526), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2017), 2, + ACTIONS(2303), 2, sym_number, sym_private_property_identifier, - ACTIONS(2023), 2, + ACTIONS(2309), 2, anon_sym_get, anon_sym_set, - ACTIONS(2001), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1130), 3, + STATE(1228), 3, sym_string, sym__property_name, sym_computed_property_name, - [38015] = 18, - ACTIONS(91), 1, + ACTIONS(2287), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [41784] = 21, + ACTIONS(93), 1, anon_sym_AT, - ACTIONS(99), 1, + ACTIONS(2289), 1, anon_sym_STAR, - ACTIONS(119), 1, - aux_sym_method_definition_token1, - ACTIONS(702), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(854), 1, + ACTIONS(2293), 1, + anon_sym_SEMI, + ACTIONS(2295), 1, + anon_sym_LBRACK, + ACTIONS(2297), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2041), 1, + ACTIONS(2301), 1, anon_sym_async, - ACTIONS(2043), 1, + ACTIONS(2305), 1, anon_sym_static, - STATE(915), 1, + ACTIONS(2307), 1, + aux_sym_method_definition_token1, + ACTIONS(2315), 1, + anon_sym_RBRACE, + STATE(985), 1, + aux_sym_class_body_repeat1, + STATE(1025), 1, aux_sym_export_statement_repeat1, - STATE(1006), 1, + STATE(1071), 1, + sym_method_definition, + STATE(1080), 1, + sym_class_static_block, + STATE(1097), 1, sym_decorator, + STATE(1526), 1, + sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1995), 2, + ACTIONS(2303), 2, sym_number, sym_private_property_identifier, - ACTIONS(2039), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2045), 2, + ACTIONS(2309), 2, anon_sym_get, anon_sym_set, - ACTIONS(2037), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1301), 3, + STATE(1228), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1430), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - [38080] = 21, - ACTIONS(2050), 1, + ACTIONS(2287), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [41856] = 21, + ACTIONS(2320), 1, anon_sym_STAR, - ACTIONS(2053), 1, + ACTIONS(2323), 1, anon_sym_RBRACE, - ACTIONS(2055), 1, + ACTIONS(2325), 1, anon_sym_SEMI, - ACTIONS(2058), 1, + ACTIONS(2328), 1, anon_sym_LBRACK, - ACTIONS(2061), 1, + ACTIONS(2331), 1, anon_sym_DQUOTE, - ACTIONS(2064), 1, + ACTIONS(2334), 1, anon_sym_SQUOTE, - ACTIONS(2067), 1, + ACTIONS(2337), 1, anon_sym_async, - ACTIONS(2073), 1, + ACTIONS(2343), 1, anon_sym_AT, - ACTIONS(2076), 1, + ACTIONS(2346), 1, anon_sym_static, - ACTIONS(2079), 1, + ACTIONS(2349), 1, aux_sym_method_definition_token1, - STATE(876), 1, + STATE(985), 1, aux_sym_class_body_repeat1, - STATE(910), 1, + STATE(1025), 1, aux_sym_export_statement_repeat1, - STATE(958), 1, + STATE(1071), 1, sym_method_definition, - STATE(971), 1, + STATE(1080), 1, sym_class_static_block, - STATE(1006), 1, + STATE(1097), 1, sym_decorator, - STATE(1399), 1, + STATE(1526), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2070), 2, + ACTIONS(2340), 2, sym_number, sym_private_property_identifier, - ACTIONS(2082), 2, + ACTIONS(2352), 2, anon_sym_get, anon_sym_set, - ACTIONS(2047), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1130), 3, + STATE(1228), 3, sym_string, sym__property_name, sym_computed_property_name, - [38151] = 14, - ACTIONS(673), 1, + ACTIONS(2317), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [41928] = 14, + ACTIONS(883), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(854), 1, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1885), 1, + ACTIONS(1969), 1, anon_sym_LBRACE, - ACTIONS(1889), 1, + ACTIONS(1973), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(2089), 1, + ACTIONS(2359), 1, anon_sym_RBRACE, - STATE(1312), 1, + STATE(1466), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2091), 2, + ACTIONS(2361), 2, sym_number, sym_private_property_identifier, - STATE(1281), 3, + STATE(1457), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1620), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1693), 3, + STATE(1788), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(2085), 7, + STATE(1796), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2355), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [38208] = 14, - ACTIONS(673), 1, + [41986] = 14, + ACTIONS(883), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(854), 1, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1885), 1, + ACTIONS(1969), 1, anon_sym_LBRACE, - ACTIONS(1889), 1, + ACTIONS(1973), 1, anon_sym_LBRACK, - ACTIONS(2087), 1, + ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(2095), 1, + ACTIONS(2365), 1, anon_sym_RBRACE, - STATE(1335), 1, + STATE(1476), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2091), 2, + ACTIONS(2361), 2, sym_number, sym_private_property_identifier, - STATE(1332), 3, + STATE(1454), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1620), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1693), 3, + STATE(1788), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(2093), 7, + STATE(1796), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2363), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [38265] = 21, - ACTIONS(91), 1, + [42044] = 21, + ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2003), 1, + ACTIONS(2289), 1, anon_sym_STAR, - ACTIONS(2009), 1, + ACTIONS(2293), 1, + anon_sym_SEMI, + ACTIONS(2295), 1, anon_sym_LBRACK, - ACTIONS(2011), 1, + ACTIONS(2297), 1, anon_sym_DQUOTE, - ACTIONS(2013), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(2015), 1, + ACTIONS(2301), 1, anon_sym_async, - ACTIONS(2019), 1, + ACTIONS(2305), 1, anon_sym_static, - ACTIONS(2021), 1, + ACTIONS(2307), 1, aux_sym_method_definition_token1, - ACTIONS(2097), 1, + ACTIONS(2367), 1, anon_sym_RBRACE, - ACTIONS(2099), 1, + STATE(985), 1, + aux_sym_class_body_repeat1, + STATE(1025), 1, + aux_sym_export_statement_repeat1, + STATE(1071), 1, + sym_method_definition, + STATE(1080), 1, + sym_class_static_block, + STATE(1097), 1, + sym_decorator, + STATE(1526), 1, + sym_field_definition, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2303), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2309), 2, + anon_sym_get, + anon_sym_set, + STATE(1228), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2287), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [42116] = 18, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(101), 1, + anon_sym_STAR, + ACTIONS(123), 1, + aux_sym_method_definition_token1, + ACTIONS(914), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2373), 1, + anon_sym_async, + ACTIONS(2375), 1, + anon_sym_static, + STATE(1019), 1, + aux_sym_export_statement_repeat1, + STATE(1097), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2281), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2371), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2377), 2, + anon_sym_get, + anon_sym_set, + STATE(1448), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1516), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(2369), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [42182] = 21, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2289), 1, + anon_sym_STAR, + ACTIONS(2295), 1, + anon_sym_LBRACK, + ACTIONS(2297), 1, + anon_sym_DQUOTE, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2301), 1, + anon_sym_async, + ACTIONS(2305), 1, + anon_sym_static, + ACTIONS(2307), 1, + aux_sym_method_definition_token1, + ACTIONS(2379), 1, + anon_sym_RBRACE, + ACTIONS(2381), 1, anon_sym_SEMI, - STATE(870), 1, + STATE(988), 1, aux_sym_class_body_repeat1, - STATE(910), 1, + STATE(1025), 1, aux_sym_export_statement_repeat1, - STATE(958), 1, + STATE(1071), 1, sym_method_definition, - STATE(971), 1, + STATE(1080), 1, sym_class_static_block, - STATE(1006), 1, + STATE(1097), 1, sym_decorator, - STATE(1399), 1, + STATE(1526), 1, sym_field_definition, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2017), 2, + ACTIONS(2303), 2, sym_number, sym_private_property_identifier, - ACTIONS(2023), 2, + ACTIONS(2309), 2, anon_sym_get, anon_sym_set, - ACTIONS(2001), 3, + STATE(1228), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2287), 4, anon_sym_export, anon_sym_let, + anon_sym_await, sym_identifier, - STATE(1130), 3, + [42254] = 21, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2289), 1, + anon_sym_STAR, + ACTIONS(2295), 1, + anon_sym_LBRACK, + ACTIONS(2297), 1, + anon_sym_DQUOTE, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + ACTIONS(2301), 1, + anon_sym_async, + ACTIONS(2305), 1, + anon_sym_static, + ACTIONS(2307), 1, + aux_sym_method_definition_token1, + ACTIONS(2383), 1, + anon_sym_RBRACE, + ACTIONS(2385), 1, + anon_sym_SEMI, + STATE(982), 1, + aux_sym_class_body_repeat1, + STATE(1025), 1, + aux_sym_export_statement_repeat1, + STATE(1071), 1, + sym_method_definition, + STATE(1080), 1, + sym_class_static_block, + STATE(1097), 1, + sym_decorator, + STATE(1526), 1, + sym_field_definition, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2303), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2309), 2, + anon_sym_get, + anon_sym_set, + STATE(1228), 3, sym_string, sym__property_name, sym_computed_property_name, - [38336] = 12, - ACTIONS(673), 1, + ACTIONS(2287), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [42326] = 12, + ACTIONS(883), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(854), 1, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1885), 1, + ACTIONS(1969), 1, anon_sym_LBRACE, - ACTIONS(1889), 1, + ACTIONS(1973), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2091), 2, + ACTIONS(2361), 2, sym_number, sym_private_property_identifier, - ACTIONS(2103), 2, + ACTIONS(2389), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1421), 3, + STATE(1514), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1620), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1693), 3, + STATE(1788), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(2101), 7, + STATE(1796), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2387), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [38388] = 15, - ACTIONS(101), 1, + [42379] = 16, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(854), 1, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(1087), 1, + anon_sym_async, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(2391), 1, anon_sym_STAR, - ACTIONS(2107), 1, + ACTIONS(2393), 1, anon_sym_RBRACE, - ACTIONS(2111), 1, + ACTIONS(2397), 1, anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(1418), 1, aux_sym_object_repeat1, + STATE(1452), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(1089), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1710), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 5, + ACTIONS(1085), 5, anon_sym_export, anon_sym_let, - anon_sym_async, + anon_sym_await, sym_identifier, anon_sym_static, - [38444] = 16, - ACTIONS(101), 1, + [42438] = 15, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(854), 1, + ACTIONS(171), 1, + anon_sym_RBRACE, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(2391), 1, anon_sym_STAR, - ACTIONS(2111), 1, + ACTIONS(2397), 1, anon_sym_EQ, - ACTIONS(2113), 1, - anon_sym_RBRACE, - STATE(1311), 1, + STATE(1452), 1, aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(1487), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(1089), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1710), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 4, + ACTIONS(1085), 6, anon_sym_export, anon_sym_let, + anon_sym_await, + anon_sym_async, sym_identifier, anon_sym_static, - [38502] = 15, - ACTIONS(101), 1, + [42495] = 16, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(854), 1, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(1087), 1, + anon_sym_async, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(2391), 1, anon_sym_STAR, - ACTIONS(2111), 1, + ACTIONS(2397), 1, anon_sym_EQ, - ACTIONS(2115), 1, + ACTIONS(2399), 1, anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(1418), 1, aux_sym_object_repeat1, + STATE(1452), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(1089), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1710), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 5, + ACTIONS(1085), 5, anon_sym_export, anon_sym_let, - anon_sym_async, + anon_sym_await, sym_identifier, anon_sym_static, - [38558] = 16, - ACTIONS(101), 1, + [42554] = 15, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(854), 1, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(2391), 1, anon_sym_STAR, - ACTIONS(2111), 1, + ACTIONS(2397), 1, anon_sym_EQ, - ACTIONS(2115), 1, + ACTIONS(2401), 1, anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(1418), 1, aux_sym_object_repeat1, + STATE(1452), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(1089), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1710), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 4, + ACTIONS(1085), 6, anon_sym_export, anon_sym_let, + anon_sym_await, + anon_sym_async, sym_identifier, anon_sym_static, - [38616] = 15, - ACTIONS(101), 1, + [42611] = 16, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(792), 1, - anon_sym_RBRACE, - ACTIONS(854), 1, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(1087), 1, + anon_sym_async, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(2391), 1, anon_sym_STAR, - ACTIONS(2111), 1, + ACTIONS(2397), 1, anon_sym_EQ, - STATE(1310), 1, + ACTIONS(2401), 1, + anon_sym_RBRACE, + STATE(1418), 1, aux_sym_object_repeat1, - STATE(1311), 1, + STATE(1452), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(1089), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1710), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 5, + ACTIONS(1085), 5, anon_sym_export, anon_sym_let, - anon_sym_async, + anon_sym_await, sym_identifier, anon_sym_static, - [38672] = 16, - ACTIONS(101), 1, + [42670] = 15, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(854), 1, + ACTIONS(351), 1, + anon_sym_RBRACE, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(2391), 1, anon_sym_STAR, - ACTIONS(2107), 1, - anon_sym_RBRACE, - ACTIONS(2111), 1, + ACTIONS(2397), 1, anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(1418), 1, aux_sym_object_repeat1, + STATE(1452), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(1089), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1710), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 4, + ACTIONS(1085), 6, anon_sym_export, anon_sym_let, + anon_sym_await, + anon_sym_async, sym_identifier, anon_sym_static, - [38730] = 16, - ACTIONS(101), 1, + [42727] = 16, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(792), 1, + ACTIONS(351), 1, anon_sym_RBRACE, - ACTIONS(854), 1, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(874), 1, + ACTIONS(1087), 1, anon_sym_async, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(2391), 1, anon_sym_STAR, - ACTIONS(2111), 1, + ACTIONS(2397), 1, anon_sym_EQ, - STATE(1310), 1, + STATE(1418), 1, aux_sym_object_repeat1, - STATE(1311), 1, + STATE(1452), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(1089), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1710), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 4, + ACTIONS(1085), 5, anon_sym_export, anon_sym_let, + anon_sym_await, sym_identifier, anon_sym_static, - [38788] = 16, - ACTIONS(101), 1, + [42786] = 15, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(800), 1, - anon_sym_RBRACE, - ACTIONS(854), 1, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(2391), 1, anon_sym_STAR, - ACTIONS(2111), 1, + ACTIONS(2397), 1, anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, + ACTIONS(2399), 1, + anon_sym_RBRACE, + STATE(1418), 1, aux_sym_object_repeat1, + STATE(1452), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(1089), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1710), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 4, + ACTIONS(1085), 6, anon_sym_export, anon_sym_let, + anon_sym_await, + anon_sym_async, sym_identifier, anon_sym_static, - [38846] = 15, - ACTIONS(101), 1, + [42843] = 15, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(800), 1, - anon_sym_RBRACE, - ACTIONS(854), 1, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(2391), 1, anon_sym_STAR, - ACTIONS(2111), 1, + ACTIONS(2393), 1, + anon_sym_RBRACE, + ACTIONS(2397), 1, anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(1418), 1, aux_sym_object_repeat1, + STATE(1452), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(1089), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1710), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 5, + ACTIONS(1085), 6, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - [38902] = 16, - ACTIONS(101), 1, + [42900] = 16, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(766), 1, + ACTIONS(216), 1, anon_sym_RBRACE, - ACTIONS(854), 1, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(874), 1, + ACTIONS(1087), 1, anon_sym_async, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(2391), 1, anon_sym_STAR, - ACTIONS(2111), 1, + ACTIONS(2397), 1, anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(1418), 1, aux_sym_object_repeat1, + STATE(1452), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(1089), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1710), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 4, + ACTIONS(1085), 5, anon_sym_export, anon_sym_let, + anon_sym_await, sym_identifier, anon_sym_static, - [38960] = 15, - ACTIONS(101), 1, + [42959] = 16, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(854), 1, + ACTIONS(171), 1, + anon_sym_RBRACE, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(1087), 1, + anon_sym_async, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(2391), 1, anon_sym_STAR, - ACTIONS(2111), 1, + ACTIONS(2397), 1, anon_sym_EQ, - ACTIONS(2113), 1, - anon_sym_RBRACE, - STATE(1311), 1, + STATE(1452), 1, aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(1487), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(1089), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1710), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 5, + ACTIONS(1085), 5, anon_sym_export, anon_sym_let, - anon_sym_async, + anon_sym_await, sym_identifier, anon_sym_static, - [39016] = 15, - ACTIONS(101), 1, + [43018] = 15, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(766), 1, + ACTIONS(216), 1, anon_sym_RBRACE, - ACTIONS(854), 1, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(2391), 1, anon_sym_STAR, - ACTIONS(2111), 1, + ACTIONS(2397), 1, anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(1418), 1, aux_sym_object_repeat1, + STATE(1452), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(1089), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1710), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 5, + ACTIONS(1085), 6, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - [39072] = 13, - ACTIONS(101), 1, + [43075] = 13, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(854), 1, + ACTIONS(216), 1, + anon_sym_RBRACE, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2111), 1, + ACTIONS(2397), 1, anon_sym_EQ, - ACTIONS(2113), 1, - anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(1418), 1, aux_sym_object_repeat1, + STATE(1452), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - ACTIONS(2109), 2, + ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1710), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [39123] = 13, - ACTIONS(101), 1, + [43127] = 13, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(854), 1, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2111), 1, + ACTIONS(2397), 1, anon_sym_EQ, - ACTIONS(2115), 1, + ACTIONS(2401), 1, anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(1418), 1, aux_sym_object_repeat1, + STATE(1452), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - ACTIONS(2109), 2, + ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1710), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [39174] = 14, - ACTIONS(2009), 1, - anon_sym_LBRACK, - ACTIONS(2011), 1, - anon_sym_DQUOTE, - ACTIONS(2013), 1, - anon_sym_SQUOTE, - ACTIONS(2117), 1, - anon_sym_STAR, - ACTIONS(2119), 1, - anon_sym_LBRACE, - ACTIONS(2121), 1, - anon_sym_async, - ACTIONS(2127), 1, - sym__automatic_semicolon, - STATE(962), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2123), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2125), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 3, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - STATE(1111), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2001), 4, - anon_sym_export, - anon_sym_let, - sym_identifier, - anon_sym_static, - [39227] = 13, - ACTIONS(101), 1, + [43179] = 13, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(854), 1, + ACTIONS(171), 1, + anon_sym_RBRACE, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2107), 1, - anon_sym_RBRACE, - ACTIONS(2111), 1, + ACTIONS(2397), 1, anon_sym_EQ, - STATE(1311), 1, + STATE(1452), 1, aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(1487), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - ACTIONS(2109), 2, + ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1710), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [39278] = 13, - ACTIONS(101), 1, + [43231] = 13, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(792), 1, - anon_sym_RBRACE, - ACTIONS(854), 1, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2111), 1, + ACTIONS(2397), 1, anon_sym_EQ, - STATE(1310), 1, + ACTIONS(2399), 1, + anon_sym_RBRACE, + STATE(1418), 1, aux_sym_object_repeat1, - STATE(1311), 1, + STATE(1452), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - ACTIONS(2109), 2, + ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1710), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [39329] = 13, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(766), 1, - anon_sym_RBRACE, - ACTIONS(854), 1, + [43283] = 14, + ACTIONS(2295), 1, + anon_sym_LBRACK, + ACTIONS(2297), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2111), 1, - anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + ACTIONS(2403), 1, + anon_sym_STAR, + ACTIONS(2405), 1, + anon_sym_LBRACE, + ACTIONS(2407), 1, + anon_sym_async, + ACTIONS(2413), 1, + sym__automatic_semicolon, + STATE(1081), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(2409), 2, sym_number, sym_private_property_identifier, - ACTIONS(2109), 2, + ACTIONS(2411), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2395), 3, anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, + anon_sym_SEMI, + anon_sym_EQ, + STATE(1231), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(2287), 5, anon_sym_export, anon_sym_let, - anon_sym_async, + anon_sym_await, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [39380] = 13, - ACTIONS(101), 1, + [43337] = 13, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(800), 1, + ACTIONS(351), 1, anon_sym_RBRACE, - ACTIONS(854), 1, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2111), 1, + ACTIONS(2397), 1, anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, + STATE(1418), 1, aux_sym_object_repeat1, + STATE(1452), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - ACTIONS(2109), 2, + ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1710), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [39431] = 13, - ACTIONS(854), 1, + [43389] = 13, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2105), 1, - anon_sym_STAR, - ACTIONS(2111), 1, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2393), 1, + anon_sym_RBRACE, + ACTIONS(2397), 1, anon_sym_EQ, + STATE(1418), 1, + aux_sym_object_repeat1, + STATE(1452), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2130), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1412), 3, + STATE(1710), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 4, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, + anon_sym_async, sym_identifier, anon_sym_static, - [39481] = 13, - ACTIONS(854), 1, + anon_sym_get, + anon_sym_set, + [43441] = 13, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1987), 1, + ACTIONS(2273), 1, anon_sym_COMMA, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(2391), 1, anon_sym_STAR, - ACTIONS(2133), 1, + ACTIONS(2416), 1, anon_sym_RBRACE, - STATE(1296), 1, + STATE(1464), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(1089), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1710), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 5, + ACTIONS(1085), 6, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - [39531] = 14, - ACTIONS(854), 1, + [43492] = 14, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(874), 1, + ACTIONS(1087), 1, anon_sym_async, - ACTIONS(1987), 1, + ACTIONS(2273), 1, anon_sym_COMMA, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(2391), 1, anon_sym_STAR, - ACTIONS(2133), 1, + ACTIONS(2416), 1, anon_sym_RBRACE, - STATE(1296), 1, + STATE(1464), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(1089), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1412), 3, + STATE(1710), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 4, + ACTIONS(1085), 5, anon_sym_export, anon_sym_let, + anon_sym_await, sym_identifier, anon_sym_static, - [39583] = 18, - ACTIONS(91), 1, + [43545] = 18, + ACTIONS(93), 1, anon_sym_AT, - ACTIONS(854), 1, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2135), 1, + ACTIONS(2418), 1, anon_sym_export, - ACTIONS(2137), 1, + ACTIONS(2420), 1, anon_sym_STAR, - ACTIONS(2139), 1, + ACTIONS(2422), 1, anon_sym_class, - ACTIONS(2141), 1, + ACTIONS(2424), 1, anon_sym_async, - ACTIONS(2145), 1, + ACTIONS(2428), 1, anon_sym_static, - ACTIONS(2147), 1, + ACTIONS(2430), 1, aux_sym_method_definition_token1, - ACTIONS(2149), 1, + ACTIONS(2432), 1, anon_sym_get, - ACTIONS(2151), 1, + ACTIONS(2434), 1, anon_sym_set, - STATE(944), 1, + STATE(1041), 1, aux_sym_export_statement_repeat1, - STATE(1006), 1, + STATE(1097), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(872), 2, - anon_sym_let, - sym_identifier, - ACTIONS(2143), 2, + ACTIONS(2426), 2, sym_number, sym_private_property_identifier, - STATE(1588), 3, + ACTIONS(1085), 3, + anon_sym_let, + anon_sym_await, + sym_identifier, + STATE(1682), 3, sym_string, sym__property_name, sym_computed_property_name, - [39643] = 12, - ACTIONS(854), 1, + [43606] = 13, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(1087), 1, + anon_sym_async, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(2391), 1, anon_sym_STAR, - ACTIONS(2111), 1, + ACTIONS(2397), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(1089), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2130), 2, + ACTIONS(2436), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1412), 3, + STATE(1710), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 5, + ACTIONS(1085), 5, anon_sym_export, anon_sym_let, - anon_sym_async, + anon_sym_await, sym_identifier, anon_sym_static, - [39691] = 11, - ACTIONS(854), 1, + [43657] = 12, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(2391), 1, anon_sym_STAR, + ACTIONS(2397), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(1089), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2153), 2, + ACTIONS(2436), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1412), 3, + STATE(1710), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 5, + ACTIONS(1085), 6, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - [39736] = 10, - ACTIONS(854), 1, + [43706] = 11, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2155), 1, + ACTIONS(2439), 1, anon_sym_STAR, + ACTIONS(2443), 1, + anon_sym_get, + ACTIONS(2445), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2157), 2, + ACTIONS(2441), 2, sym_number, sym_private_property_identifier, - ACTIONS(2159), 2, - anon_sym_get, - anon_sym_set, - STATE(1484), 3, + STATE(1598), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2109), 4, + ACTIONS(2395), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(872), 5, + ACTIONS(1085), 6, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - [39779] = 11, - ACTIONS(854), 1, + [43752] = 11, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2161), 1, + ACTIONS(2447), 1, anon_sym_STAR, - ACTIONS(2165), 1, + ACTIONS(2451), 1, anon_sym_get, - ACTIONS(2167), 1, + ACTIONS(2453), 1, anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2163), 2, + ACTIONS(2449), 2, sym_number, sym_private_property_identifier, - STATE(1486), 3, + STATE(1582), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2109), 4, + ACTIONS(2395), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(872), 5, + ACTIONS(1085), 6, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - [39824] = 10, - ACTIONS(854), 1, + [43798] = 16, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2117), 1, + ACTIONS(2420), 1, anon_sym_STAR, + ACTIONS(2424), 1, + anon_sym_async, + ACTIONS(2428), 1, + anon_sym_static, + ACTIONS(2430), 1, + aux_sym_method_definition_token1, + ACTIONS(2432), 1, + anon_sym_get, + ACTIONS(2434), 1, + anon_sym_set, + STATE(1041), 1, + aux_sym_export_statement_repeat1, + STATE(1097), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2169), 2, + ACTIONS(2426), 2, sym_number, sym_private_property_identifier, - ACTIONS(2171), 2, - anon_sym_get, - anon_sym_set, - STATE(1458), 3, + STATE(1682), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2109), 4, - sym__automatic_semicolon, + ACTIONS(1085), 4, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + [43854] = 11, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2273), 1, + anon_sym_COMMA, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2416), 1, + anon_sym_RBRACE, + STATE(1464), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1081), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2395), 2, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(872), 5, + anon_sym_COLON, + STATE(1710), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - [39867] = 12, - ACTIONS(854), 1, + anon_sym_get, + anon_sym_set, + [43900] = 11, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(2391), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(1089), 2, anon_sym_get, anon_sym_set, - ACTIONS(2109), 2, + ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2153), 2, + ACTIONS(2455), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1412), 3, + STATE(1710), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 4, + ACTIONS(1085), 6, anon_sym_export, anon_sym_let, + anon_sym_await, + anon_sym_async, sym_identifier, anon_sym_static, - [39914] = 16, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2009), 1, + [43946] = 12, + ACTIONS(2295), 1, anon_sym_LBRACK, - ACTIONS(2011), 1, + ACTIONS(2297), 1, anon_sym_DQUOTE, - ACTIONS(2013), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(2173), 1, + ACTIONS(2457), 1, anon_sym_STAR, - ACTIONS(2175), 1, + ACTIONS(2459), 1, anon_sym_async, - ACTIONS(2179), 1, - anon_sym_static, - ACTIONS(2181), 1, - aux_sym_method_definition_token1, - ACTIONS(2183), 1, + ACTIONS(2463), 1, anon_sym_get, - ACTIONS(2185), 1, + ACTIONS(2465), 1, anon_sym_set, - STATE(944), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2177), 2, + ACTIONS(2461), 2, sym_number, sym_private_property_identifier, - ACTIONS(2001), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1114), 3, + STATE(1245), 3, sym_string, sym__property_name, sym_computed_property_name, - [39969] = 11, - ACTIONS(854), 1, + ACTIONS(2395), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(2287), 5, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + anon_sym_static, + [43994] = 10, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2187), 1, + ACTIONS(2403), 1, anon_sym_STAR, - ACTIONS(2191), 1, - anon_sym_get, - ACTIONS(2193), 1, - anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2189), 2, + ACTIONS(2467), 2, sym_number, sym_private_property_identifier, - STATE(1504), 3, + ACTIONS(2469), 2, + anon_sym_get, + anon_sym_set, + STATE(1553), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2109), 4, + ACTIONS(2395), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(872), 5, + ACTIONS(1085), 6, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - [40014] = 10, - ACTIONS(854), 1, + [44038] = 12, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(1087), 1, + anon_sym_async, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2111), 1, - anon_sym_EQ, + ACTIONS(2391), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - ACTIONS(2109), 2, + ACTIONS(1089), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2130), 2, + ACTIONS(2455), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1412), 3, + STATE(1710), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 5, anon_sym_export, anon_sym_let, - anon_sym_async, + anon_sym_await, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [40057] = 12, - ACTIONS(2009), 1, + [44086] = 16, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2295), 1, anon_sym_LBRACK, - ACTIONS(2011), 1, + ACTIONS(2297), 1, anon_sym_DQUOTE, - ACTIONS(2013), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(2195), 1, + ACTIONS(2471), 1, anon_sym_STAR, - ACTIONS(2197), 1, + ACTIONS(2473), 1, anon_sym_async, - ACTIONS(2201), 1, + ACTIONS(2477), 1, + anon_sym_static, + ACTIONS(2479), 1, + aux_sym_method_definition_token1, + ACTIONS(2481), 1, anon_sym_get, - ACTIONS(2203), 1, + ACTIONS(2483), 1, anon_sym_set, + STATE(1041), 1, + aux_sym_export_statement_repeat1, + STATE(1097), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2199), 2, + ACTIONS(2475), 2, sym_number, sym_private_property_identifier, - STATE(1109), 3, + STATE(1232), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2001), 4, + ACTIONS(2287), 4, anon_sym_export, anon_sym_let, + anon_sym_await, sym_identifier, - anon_sym_static, - ACTIONS(2109), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [40104] = 11, - ACTIONS(854), 1, + [44142] = 10, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1987), 1, - anon_sym_COMMA, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2133), 1, - anon_sym_RBRACE, - STATE(1296), 1, - aux_sym_object_repeat1, + ACTIONS(2485), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(2487), 2, sym_number, sym_private_property_identifier, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1412), 3, + ACTIONS(2489), 2, + anon_sym_get, + anon_sym_set, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(2395), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(1085), 6, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [40149] = 16, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(854), 1, + [44186] = 10, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2137), 1, - anon_sym_STAR, - ACTIONS(2141), 1, - anon_sym_async, - ACTIONS(2145), 1, - anon_sym_static, - ACTIONS(2147), 1, - aux_sym_method_definition_token1, - ACTIONS(2149), 1, - anon_sym_get, - ACTIONS(2151), 1, - anon_sym_set, - STATE(944), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, + ACTIONS(2397), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2143), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - ACTIONS(872), 3, - anon_sym_export, - anon_sym_let, - sym_identifier, - STATE(1588), 3, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2436), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1710), 3, sym_string, sym__property_name, sym_computed_property_name, - [40204] = 8, - ACTIONS(854), 1, + ACTIONS(1085), 8, + anon_sym_export, + anon_sym_let, + anon_sym_await, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [44230] = 8, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2157), 2, + ACTIONS(2467), 2, sym_number, sym_private_property_identifier, - STATE(1484), 3, + STATE(1553), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2109), 4, + ACTIONS(2395), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [40242] = 6, - ACTIONS(2209), 1, - anon_sym_LPAREN, - ACTIONS(2211), 1, - anon_sym_DOT, - STATE(1004), 1, - sym_arguments, + [44269] = 8, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2205), 8, + ACTIONS(2487), 2, + sym_number, + sym_private_property_identifier, + STATE(1580), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2395), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, - anon_sym_class, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2207), 8, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [40276] = 8, - ACTIONS(854), 1, + [44308] = 8, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2213), 2, + ACTIONS(2491), 2, sym_number, sym_private_property_identifier, - STATE(1489), 3, + STATE(1600), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2109), 4, + ACTIONS(2395), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [40314] = 8, - ACTIONS(854), 1, + [44347] = 8, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2215), 2, + ACTIONS(2493), 2, sym_number, sym_private_property_identifier, - STATE(1488), 3, + STATE(1599), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2109), 4, + ACTIONS(2395), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [40352] = 8, - ACTIONS(854), 1, + [44386] = 8, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2217), 2, + ACTIONS(2495), 2, sym_number, sym_private_property_identifier, - STATE(1505), 3, + STATE(1584), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2109), 4, + ACTIONS(2395), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [40390] = 8, - ACTIONS(854), 1, + [44425] = 8, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2169), 2, + ACTIONS(2497), 2, sym_number, sym_private_property_identifier, - STATE(1458), 3, + STATE(1585), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2109), 4, + ACTIONS(2395), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [40428] = 9, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + [44464] = 6, + ACTIONS(2503), 1, + anon_sym_LPAREN, + ACTIONS(2505), 1, + anon_sym_DOT, + STATE(1106), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(2501), 8, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2153), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, + anon_sym_AT, + aux_sym_method_definition_token1, + ACTIONS(2499), 9, anon_sym_export, anon_sym_let, + anon_sym_await, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [40468] = 8, - ACTIONS(854), 1, + [44499] = 9, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2219), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - STATE(1506), 3, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2455), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1710), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2109), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [40506] = 3, + [44540] = 15, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(936), 1, + anon_sym_var, + ACTIONS(940), 1, + anon_sym_using, + ACTIONS(942), 1, + anon_sym_await, + ACTIONS(947), 1, + anon_sym_class, + ACTIONS(949), 1, + anon_sym_async, + ACTIONS(951), 1, + anon_sym_function, + ACTIONS(2395), 1, + anon_sym_LPAREN, + ACTIONS(2507), 1, + anon_sym_default, + STATE(486), 1, + sym_declaration, + STATE(1097), 1, + sym_decorator, + STATE(1327), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(938), 2, + anon_sym_let, + anon_sym_const, + STATE(419), 6, + sym_variable_declaration, + sym_lexical_declaration, + sym_using_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [44593] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2221), 7, + ACTIONS(2509), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2223), 11, + ACTIONS(2511), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -70674,19 +80726,56 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40533] = 3, + [44621] = 14, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(936), 1, + anon_sym_var, + ACTIONS(940), 1, + anon_sym_using, + ACTIONS(942), 1, + anon_sym_await, + ACTIONS(947), 1, + anon_sym_class, + ACTIONS(949), 1, + anon_sym_async, + ACTIONS(951), 1, + anon_sym_function, + ACTIONS(2507), 1, + anon_sym_default, + STATE(486), 1, + sym_declaration, + STATE(1097), 1, + sym_decorator, + STATE(1327), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(938), 2, + anon_sym_let, + anon_sym_const, + STATE(419), 6, + sym_variable_declaration, + sym_lexical_declaration, + sym_using_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [44671] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, + ACTIONS(2513), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2227), 11, + ACTIONS(2515), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -70698,19 +80787,20 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40560] = 3, + [44699] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2229), 7, + ACTIONS(2517), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2231), 11, + ACTIONS(2519), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -70722,21 +80812,51 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40587] = 3, + [44727] = 6, + ACTIONS(2525), 1, + anon_sym_AT, + STATE(1041), 1, + aux_sym_export_statement_repeat1, + STATE(1097), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2523), 7, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + aux_sym_method_definition_token1, + ACTIONS(2521), 9, + anon_sym_export, + anon_sym_let, + anon_sym_await, + anon_sym_class, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [44761] = 4, + ACTIONS(2528), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, + ACTIONS(696), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2227), 11, + ACTIONS(694), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -70746,19 +80866,45 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40614] = 3, + [44791] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2532), 9, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + ACTIONS(2530), 10, + anon_sym_export, + anon_sym_let, + anon_sym_await, + anon_sym_DOT, + anon_sym_class, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [44819] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2229), 7, + ACTIONS(2534), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2231), 11, + ACTIONS(2536), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -70770,23 +80916,24 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40641] = 3, + [44847] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2233), 9, + ACTIONS(2538), 8, anon_sym_export, anon_sym_let, - anon_sym_DOT, - anon_sym_class, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2235), 9, + ACTIONS(2540), 11, anon_sym_STAR, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -70794,19 +80941,20 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40668] = 3, + [44875] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, + ACTIONS(2542), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2227), 11, + ACTIONS(2544), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -70818,21 +80966,23 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40695] = 3, + [44903] = 4, + ACTIONS(2546), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, + ACTIONS(710), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2227), 11, + ACTIONS(708), 10, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -70842,19 +80992,20 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40722] = 3, + [44933] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2229), 7, + ACTIONS(2513), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2231), 11, + ACTIONS(2515), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -70866,19 +81017,20 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40749] = 3, + [44961] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2229), 7, + ACTIONS(2513), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2231), 11, + ACTIONS(2515), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -70890,19 +81042,20 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40776] = 3, + [44989] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2237), 7, + ACTIONS(2513), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2239), 11, + ACTIONS(2515), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -70914,19 +81067,20 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40803] = 3, + [45017] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, + ACTIONS(2513), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2227), 11, + ACTIONS(2515), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -70938,19 +81092,20 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40830] = 3, + [45045] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2241), 7, + ACTIONS(2513), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2243), 11, + ACTIONS(2515), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -70962,19 +81117,20 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40857] = 3, + [45073] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2245), 7, + ACTIONS(2548), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2247), 11, + ACTIONS(2550), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -70986,19 +81142,20 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40884] = 3, + [45101] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2245), 7, + ACTIONS(2548), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2247), 11, + ACTIONS(2550), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -71010,19 +81167,20 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40911] = 3, + [45129] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2245), 7, + ACTIONS(2548), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2247), 11, + ACTIONS(2550), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -71034,19 +81192,20 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40938] = 3, + [45157] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2245), 7, + ACTIONS(2548), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2247), 11, + ACTIONS(2550), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -71058,19 +81217,20 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40965] = 3, + [45185] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2245), 7, + ACTIONS(2548), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2247), 11, + ACTIONS(2550), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -71082,19 +81242,20 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [40992] = 3, + [45213] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2245), 7, + ACTIONS(2548), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2247), 11, + ACTIONS(2550), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -71106,19 +81267,20 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41019] = 3, + [45241] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2229), 7, + ACTIONS(2513), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2231), 11, + ACTIONS(2515), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -71130,46 +81292,45 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41046] = 6, - ACTIONS(2253), 1, - anon_sym_AT, - STATE(944), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, + [45269] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2251), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - aux_sym_method_definition_token1, - ACTIONS(2249), 8, + ACTIONS(2513), 8, anon_sym_export, anon_sym_let, - anon_sym_class, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [41079] = 3, + ACTIONS(2515), 11, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [45297] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2229), 7, + ACTIONS(2513), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2231), 11, + ACTIONS(2515), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -71181,19 +81342,20 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41106] = 3, + [45325] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, + ACTIONS(2513), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2227), 11, + ACTIONS(2515), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -71205,19 +81367,20 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41133] = 3, + [45353] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, + ACTIONS(2513), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2227), 11, + ACTIONS(2515), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -71229,22 +81392,22 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41160] = 4, - ACTIONS(2256), 1, - sym__automatic_semicolon, + [45381] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(501), 7, + ACTIONS(2552), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(499), 10, + ACTIONS(2554), 11, anon_sym_STAR, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -71254,19 +81417,20 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41189] = 3, + [45409] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, + ACTIONS(2509), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2227), 11, + ACTIONS(2511), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -71278,19 +81442,20 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41216] = 3, + [45437] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2258), 7, + ACTIONS(2509), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2260), 11, + ACTIONS(2511), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -71302,19 +81467,56 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41243] = 3, + [45465] = 14, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(936), 1, + anon_sym_var, + ACTIONS(940), 1, + anon_sym_using, + ACTIONS(942), 1, + anon_sym_await, + ACTIONS(947), 1, + anon_sym_class, + ACTIONS(949), 1, + anon_sym_async, + ACTIONS(951), 1, + anon_sym_function, + ACTIONS(2556), 1, + anon_sym_default, + STATE(486), 1, + sym_declaration, + STATE(1097), 1, + sym_decorator, + STATE(1327), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(938), 2, + anon_sym_let, + anon_sym_const, + STATE(419), 6, + sym_variable_declaration, + sym_lexical_declaration, + sym_using_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [45515] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, + ACTIONS(2509), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2227), 11, + ACTIONS(2511), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -71326,19 +81528,20 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41270] = 3, + [45543] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, + ACTIONS(2509), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2227), 11, + ACTIONS(2511), 11, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -71350,22 +81553,22 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41297] = 4, - ACTIONS(2262), 1, - sym__automatic_semicolon, + [45571] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(505), 7, + ACTIONS(2509), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(503), 10, + ACTIONS(2511), 11, anon_sym_STAR, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, @@ -71375,23 +81578,24 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41326] = 3, + [45599] = 4, + ACTIONS(2562), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2225), 7, + ACTIONS(2558), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2227), 11, + ACTIONS(2560), 9, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -71399,43 +81603,52 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41353] = 3, + [45628] = 11, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2395), 1, + anon_sym_LPAREN, + ACTIONS(2565), 1, + anon_sym_STAR, + ACTIONS(2569), 1, + anon_sym_get, + ACTIONS(2571), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2264), 7, + ACTIONS(2567), 2, + sym_number, + sym_private_property_identifier, + STATE(1575), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1085), 6, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2266), 11, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [41380] = 3, + [45671] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(501), 7, + ACTIONS(2573), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(499), 10, + ACTIONS(2575), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -71446,46 +81659,53 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41406] = 3, + [45698] = 9, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2395), 1, + anon_sym_LPAREN, + ACTIONS(2577), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(521), 7, + ACTIONS(2579), 2, + sym_number, + sym_private_property_identifier, + STATE(1694), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(519), 10, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [41432] = 4, - ACTIONS(2272), 1, - anon_sym_SEMI, + [45737] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2268), 7, + ACTIONS(696), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2270), 9, + ACTIONS(694), 10, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -71493,109 +81713,141 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41460] = 9, - ACTIONS(854), 1, + [45764] = 11, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2395), 1, anon_sym_LPAREN, - ACTIONS(2275), 1, - anon_sym_EQ_GT, + ACTIONS(2581), 1, + anon_sym_STAR, + ACTIONS(2585), 1, + anon_sym_get, + ACTIONS(2587), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2277), 2, + ACTIONS(2583), 2, sym_number, sym_private_property_identifier, - STATE(1610), 3, + STATE(1730), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 6, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [41498] = 11, - ACTIONS(854), 1, + [45807] = 12, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2395), 1, anon_sym_LPAREN, - ACTIONS(2279), 1, + ACTIONS(2589), 1, anon_sym_STAR, - ACTIONS(2283), 1, + ACTIONS(2591), 1, + anon_sym_async, + ACTIONS(2595), 1, anon_sym_get, - ACTIONS(2285), 1, + ACTIONS(2597), 1, anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2281), 2, + ACTIONS(2593), 2, sym_number, sym_private_property_identifier, - STATE(1462), 3, + STATE(1508), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 5, + ACTIONS(1085), 5, + anon_sym_export, + anon_sym_let, + anon_sym_await, + sym_identifier, + anon_sym_static, + [45852] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2599), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - [41540] = 10, - ACTIONS(854), 1, + anon_sym_get, + anon_sym_set, + ACTIONS(2601), 10, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(856), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [45879] = 11, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2395), 1, anon_sym_LPAREN, - ACTIONS(2287), 1, + ACTIONS(2603), 1, anon_sym_STAR, + ACTIONS(2607), 1, + anon_sym_get, + ACTIONS(2609), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2277), 2, + ACTIONS(2605), 2, sym_number, sym_private_property_identifier, - ACTIONS(2289), 2, - anon_sym_get, - anon_sym_set, - STATE(1610), 3, + STATE(1568), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 5, + ACTIONS(1085), 6, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - [41580] = 3, + [45922] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2291), 7, + ACTIONS(2558), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2293), 10, + ACTIONS(2560), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -71606,19 +81858,20 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41606] = 3, + [45949] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2295), 7, + ACTIONS(2611), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2297), 10, + ACTIONS(2613), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -71629,176 +81882,114 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41632] = 13, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(768), 1, - anon_sym_var, - ACTIONS(782), 1, - anon_sym_class, - ACTIONS(784), 1, - anon_sym_async, - ACTIONS(786), 1, - anon_sym_function, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2299), 1, - anon_sym_default, - STATE(378), 1, - sym_declaration, - STATE(1006), 1, - sym_decorator, - STATE(1220), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(770), 2, - anon_sym_let, - anon_sym_const, - STATE(412), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [41678] = 11, - ACTIONS(854), 1, + [45976] = 10, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2395), 1, anon_sym_LPAREN, - ACTIONS(2301), 1, + ACTIONS(2485), 1, anon_sym_STAR, - ACTIONS(2305), 1, - anon_sym_get, - ACTIONS(2307), 1, - anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2303), 2, + ACTIONS(2487), 2, sym_number, sym_private_property_identifier, - STATE(1578), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [41720] = 12, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2309), 1, - anon_sym_STAR, - ACTIONS(2311), 1, - anon_sym_async, - ACTIONS(2315), 1, + ACTIONS(2489), 2, anon_sym_get, - ACTIONS(2317), 1, anon_sym_set, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2313), 2, - sym_number, - sym_private_property_identifier, - STATE(1558), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 4, + ACTIONS(1085), 6, anon_sym_export, anon_sym_let, + anon_sym_await, + anon_sym_async, sym_identifier, anon_sym_static, - [41764] = 10, - ACTIONS(854), 1, + [46017] = 10, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2395), 1, anon_sym_LPAREN, - ACTIONS(2155), 1, + ACTIONS(2615), 1, anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2157), 2, + ACTIONS(2579), 2, sym_number, sym_private_property_identifier, - ACTIONS(2159), 2, + ACTIONS(2617), 2, anon_sym_get, anon_sym_set, - STATE(1484), 3, + STATE(1694), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 5, + ACTIONS(1085), 6, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - [41804] = 11, - ACTIONS(854), 1, + [46058] = 11, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2395), 1, anon_sym_LPAREN, - ACTIONS(2319), 1, + ACTIONS(2619), 1, anon_sym_STAR, - ACTIONS(2323), 1, + ACTIONS(2623), 1, anon_sym_get, - ACTIONS(2325), 1, + ACTIONS(2625), 1, anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2321), 2, + ACTIONS(2621), 2, sym_number, sym_private_property_identifier, - STATE(1508), 3, + STATE(1602), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 5, + ACTIONS(1085), 6, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, - [41846] = 3, + [46101] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2327), 7, + ACTIONS(702), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2329), 10, + ACTIONS(700), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -71809,985 +82000,920 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [41872] = 11, - ACTIONS(854), 1, + [46128] = 8, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2395), 1, anon_sym_LPAREN, - ACTIONS(2331), 1, - anon_sym_STAR, - ACTIONS(2335), 1, - anon_sym_get, - ACTIONS(2337), 1, - anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2333), 2, + ACTIONS(2627), 2, sym_number, sym_private_property_identifier, - STATE(1405), 3, + STATE(1604), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 5, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - [41914] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2268), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2270), 10, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [41940] = 8, - ACTIONS(854), 1, + [46164] = 8, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2395), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2157), 2, + ACTIONS(2629), 2, sym_number, sym_private_property_identifier, - STATE(1484), 3, + STATE(1577), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [41975] = 8, - ACTIONS(854), 1, + [46200] = 8, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2395), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2339), 2, + ACTIONS(2631), 2, sym_number, sym_private_property_identifier, - STATE(1605), 3, + STATE(1570), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42010] = 8, - ACTIONS(854), 1, + [46236] = 11, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + ACTIONS(2633), 1, + anon_sym_STAR, + ACTIONS(2635), 1, + anon_sym_async, + ACTIONS(2639), 1, + anon_sym_get, + ACTIONS(2641), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2341), 2, + ACTIONS(2637), 2, sym_number, sym_private_property_identifier, - STATE(1409), 3, + STATE(1529), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 5, anon_sym_export, anon_sym_let, - anon_sym_async, + anon_sym_await, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [42045] = 8, - ACTIONS(854), 1, + [46278] = 8, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2395), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2343), 2, + ACTIONS(2643), 2, sym_number, sym_private_property_identifier, - STATE(1585), 3, + STATE(1539), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [42080] = 3, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1448), 8, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, - anon_sym_class, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1450), 8, - anon_sym_STAR, - anon_sym_LBRACK, + [46314] = 8, + ACTIONS(1075), 1, anon_sym_DQUOTE, + ACTIONS(1077), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [42105] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2395), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2345), 2, + ACTIONS(2645), 2, sym_number, sym_private_property_identifier, - STATE(1408), 3, + STATE(1540), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42140] = 11, - ACTIONS(854), 1, + [46350] = 8, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2347), 1, - anon_sym_STAR, - ACTIONS(2349), 1, - anon_sym_async, - ACTIONS(2353), 1, - anon_sym_get, - ACTIONS(2355), 1, - anon_sym_set, + ACTIONS(2395), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2351), 2, + ACTIONS(2647), 2, sym_number, sym_private_property_identifier, - STATE(1410), 3, + STATE(1715), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 4, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, + anon_sym_async, sym_identifier, anon_sym_static, - [42181] = 8, - ACTIONS(854), 1, + anon_sym_get, + anon_sym_set, + [46386] = 8, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2395), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2357), 2, + ACTIONS(2649), 2, sym_number, sym_private_property_identifier, - STATE(1414), 3, + STATE(1718), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42216] = 10, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2117), 1, - anon_sym_STAR, - ACTIONS(2359), 1, - anon_sym_async, + [46422] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2169), 2, + ACTIONS(2501), 8, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2171), 2, - anon_sym_get, - anon_sym_set, - STATE(1458), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 4, + anon_sym_AT, + aux_sym_method_definition_token1, + ACTIONS(2499), 9, anon_sym_export, anon_sym_let, - sym_identifier, - anon_sym_static, - [42255] = 12, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(768), 1, - anon_sym_var, - ACTIONS(782), 1, + anon_sym_await, anon_sym_class, - ACTIONS(784), 1, anon_sym_async, - ACTIONS(786), 1, - anon_sym_function, - ACTIONS(2361), 1, - anon_sym_default, - STATE(378), 1, - sym_declaration, - STATE(1006), 1, - sym_decorator, - STATE(1220), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(770), 2, - anon_sym_let, - anon_sym_const, - STATE(412), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [42298] = 8, - ACTIONS(854), 1, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [46448] = 8, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2395), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2277), 2, + ACTIONS(2651), 2, sym_number, sym_private_property_identifier, - STATE(1610), 3, + STATE(1740), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42333] = 8, - ACTIONS(854), 1, + [46484] = 8, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2395), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2363), 2, + ACTIONS(2653), 2, sym_number, sym_private_property_identifier, - STATE(1571), 3, + STATE(1741), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42368] = 11, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2365), 1, - anon_sym_STAR, - ACTIONS(2367), 1, - anon_sym_async, - ACTIONS(2371), 1, - anon_sym_get, - ACTIONS(2373), 1, - anon_sym_set, + [46520] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2369), 2, + ACTIONS(2657), 8, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(1487), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 4, + anon_sym_AT, + aux_sym_method_definition_token1, + ACTIONS(2655), 9, anon_sym_export, anon_sym_let, + anon_sym_await, + anon_sym_class, + anon_sym_async, sym_identifier, anon_sym_static, - [42409] = 8, - ACTIONS(854), 1, + anon_sym_get, + anon_sym_set, + [46546] = 8, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2395), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2375), 2, + ACTIONS(2659), 2, sym_number, sym_private_property_identifier, - STATE(1499), 3, + STATE(1562), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42444] = 8, - ACTIONS(854), 1, + [46582] = 8, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2395), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2377), 2, + ACTIONS(2579), 2, sym_number, sym_private_property_identifier, - STATE(1501), 3, + STATE(1694), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42479] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + [46618] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2379), 2, + ACTIONS(1737), 8, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(1467), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, + anon_sym_AT, + aux_sym_method_definition_token1, + ACTIONS(1735), 9, anon_sym_export, anon_sym_let, + anon_sym_await, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42514] = 10, - ACTIONS(854), 1, + [46644] = 10, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(874), 1, - anon_sym_async, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2105), 1, + ACTIONS(2403), 1, anon_sym_STAR, + ACTIONS(2661), 1, + anon_sym_async, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(2467), 2, sym_number, sym_private_property_identifier, - ACTIONS(876), 2, + ACTIONS(2469), 2, anon_sym_get, anon_sym_set, - STATE(1412), 3, + STATE(1553), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 4, + ACTIONS(1085), 5, anon_sym_export, anon_sym_let, + anon_sym_await, sym_identifier, anon_sym_static, - [42553] = 8, - ACTIONS(854), 1, + [46684] = 8, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2395), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2381), 2, + ACTIONS(2663), 2, sym_number, sym_private_property_identifier, - STATE(1509), 3, + STATE(1569), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42588] = 8, - ACTIONS(854), 1, + [46720] = 8, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2395), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2383), 2, + ACTIONS(2665), 2, sym_number, sym_private_property_identifier, - STATE(1614), 3, + STATE(1561), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42623] = 8, - ACTIONS(854), 1, + [46756] = 8, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2395), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2385), 2, + ACTIONS(2487), 2, sym_number, sym_private_property_identifier, - STATE(1531), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42658] = 8, - ACTIONS(854), 1, + [46792] = 11, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + ACTIONS(2667), 1, + anon_sym_STAR, + ACTIONS(2669), 1, + anon_sym_async, + ACTIONS(2673), 1, + anon_sym_get, + ACTIONS(2675), 1, + anon_sym_set, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2387), 2, + ACTIONS(2671), 2, sym_number, sym_private_property_identifier, - STATE(1532), 3, + STATE(1583), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 5, anon_sym_export, anon_sym_let, - anon_sym_async, + anon_sym_await, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [42693] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + [46834] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2389), 2, + ACTIONS(2679), 8, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(1516), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, + anon_sym_AT, + aux_sym_method_definition_token1, + ACTIONS(2677), 9, anon_sym_export, anon_sym_let, + anon_sym_await, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42728] = 8, - ACTIONS(854), 1, + [46860] = 8, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2395), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2391), 2, + ACTIONS(2681), 2, sym_number, sym_private_property_identifier, - STATE(1517), 3, + STATE(1593), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42763] = 8, - ACTIONS(854), 1, + [46896] = 8, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2395), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2393), 2, + ACTIONS(2683), 2, sym_number, sym_private_property_identifier, - STATE(1519), 3, + STATE(1595), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42798] = 8, - ACTIONS(854), 1, + [46932] = 8, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2395), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2395), 2, + ACTIONS(2685), 2, sym_number, sym_private_property_identifier, - STATE(1520), 3, + STATE(1596), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42833] = 8, - ACTIONS(854), 1, + [46968] = 10, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(1087), 1, + anon_sym_async, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, + ACTIONS(2391), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2397), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - STATE(1422), 3, + ACTIONS(1089), 2, + anon_sym_get, + anon_sym_set, + STATE(1710), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 5, anon_sym_export, anon_sym_let, - anon_sym_async, + anon_sym_await, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [42868] = 8, - ACTIONS(854), 1, + [47008] = 8, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2395), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2399), 2, + ACTIONS(2687), 2, sym_number, sym_private_property_identifier, - STATE(1553), 3, + STATE(1603), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42903] = 8, - ACTIONS(854), 1, + [47044] = 8, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2395), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2401), 2, + ACTIONS(2689), 2, sym_number, sym_private_property_identifier, - STATE(1554), 3, + STATE(1576), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42938] = 3, + [47080] = 8, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2395), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1512), 8, + ACTIONS(2691), 2, + sym_number, + sym_private_property_identifier, + STATE(1610), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, - anon_sym_class, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1514), 8, - anon_sym_STAR, - anon_sym_LBRACK, + [47116] = 8, + ACTIONS(1075), 1, anon_sym_DQUOTE, + ACTIONS(1077), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [42963] = 3, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2395), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1528), 8, + ACTIONS(2693), 2, + sym_number, + sym_private_property_identifier, + STATE(1611), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, - anon_sym_class, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1530), 8, - anon_sym_STAR, - anon_sym_LBRACK, + [47152] = 8, + ACTIONS(1075), 1, anon_sym_DQUOTE, + ACTIONS(1077), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [42988] = 3, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2395), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2205), 8, + ACTIONS(2695), 2, + sym_number, + sym_private_property_identifier, + STATE(1613), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, - anon_sym_class, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2207), 8, - anon_sym_STAR, - anon_sym_LBRACK, + [47188] = 8, + ACTIONS(1075), 1, anon_sym_DQUOTE, + ACTIONS(1077), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [43013] = 12, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(768), 1, - anon_sym_var, - ACTIONS(782), 1, - anon_sym_class, - ACTIONS(784), 1, - anon_sym_async, - ACTIONS(786), 1, - anon_sym_function, - ACTIONS(2299), 1, - anon_sym_default, - STATE(378), 1, - sym_declaration, - STATE(1006), 1, - sym_decorator, - STATE(1220), 1, - aux_sym_export_statement_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(770), 2, - anon_sym_let, - anon_sym_const, - STATE(412), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [43056] = 3, + ACTIONS(2277), 1, + anon_sym_LBRACK, + ACTIONS(2395), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2403), 8, + ACTIONS(2697), 2, + sym_number, + sym_private_property_identifier, + STATE(1614), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, - anon_sym_class, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2405), 8, - anon_sym_STAR, - anon_sym_LBRACK, + [47224] = 8, + ACTIONS(1075), 1, anon_sym_DQUOTE, + ACTIONS(1077), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - aux_sym_method_definition_token1, - [43081] = 8, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, + ACTIONS(2395), 1, anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2407), 2, + ACTIONS(2699), 2, sym_number, sym_private_property_identifier, - STATE(1465), 3, + STATE(1552), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43116] = 3, + [47260] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2409), 8, + ACTIONS(1635), 8, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + ACTIONS(1633), 9, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2411), 8, + [47286] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1745), 8, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, @@ -72796,543 +82922,489 @@ static const uint16_t ts_small_parse_table[] = { sym_private_property_identifier, anon_sym_AT, aux_sym_method_definition_token1, - [43141] = 8, - ACTIONS(854), 1, + ACTIONS(1743), 9, + anon_sym_export, + anon_sym_let, + anon_sym_await, + anon_sym_class, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [47312] = 7, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, - ACTIONS(2109), 1, - anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2413), 2, + ACTIONS(2701), 2, sym_number, sym_private_property_identifier, - STATE(1502), 3, + STATE(1597), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43176] = 7, - ACTIONS(854), 1, + [47345] = 7, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2277), 2, + ACTIONS(2699), 2, sym_number, sym_private_property_identifier, - STATE(1610), 3, + STATE(1552), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43208] = 7, - ACTIONS(854), 1, + [47378] = 7, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2415), 2, + ACTIONS(2579), 2, sym_number, sym_private_property_identifier, - STATE(1515), 3, + STATE(1694), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43240] = 7, - ACTIONS(854), 1, + [47411] = 7, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2417), 2, + ACTIONS(2703), 2, sym_number, sym_private_property_identifier, - STATE(1485), 3, + STATE(1559), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43272] = 7, - ACTIONS(854), 1, + [47444] = 7, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2419), 2, + ACTIONS(2705), 2, sym_number, sym_private_property_identifier, - STATE(1463), 3, + STATE(1565), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43304] = 7, - ACTIONS(854), 1, + [47477] = 7, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2421), 2, + ACTIONS(1081), 2, sym_number, sym_private_property_identifier, - STATE(1518), 3, + STATE(1710), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43336] = 7, - ACTIONS(854), 1, + [47510] = 7, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2423), 2, + ACTIONS(2707), 2, sym_number, sym_private_property_identifier, - STATE(1530), 3, + STATE(1726), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43368] = 7, - ACTIONS(854), 1, + [47543] = 7, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2375), 2, + ACTIONS(2709), 2, sym_number, sym_private_property_identifier, - STATE(1499), 3, + STATE(1712), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43400] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2425), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [43422] = 7, - ACTIONS(854), 1, + [47576] = 7, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2427), 2, + ACTIONS(2711), 2, sym_number, sym_private_property_identifier, - STATE(1552), 3, + STATE(1739), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43454] = 7, - ACTIONS(854), 1, + [47609] = 7, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2429), 2, + ACTIONS(2713), 2, sym_number, sym_private_property_identifier, - STATE(1500), 3, + STATE(1594), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43486] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2431), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [43508] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2433), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [43530] = 7, - ACTIONS(854), 1, + [47642] = 7, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2169), 2, + ACTIONS(2467), 2, sym_number, sym_private_property_identifier, - STATE(1458), 3, + STATE(1553), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43562] = 7, - ACTIONS(854), 1, + [47675] = 7, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2435), 2, + ACTIONS(2487), 2, sym_number, sym_private_property_identifier, - STATE(1503), 3, + STATE(1580), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43594] = 7, - ACTIONS(854), 1, + [47708] = 7, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2437), 2, + ACTIONS(2715), 2, sym_number, sym_private_property_identifier, - STATE(1507), 3, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43626] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2439), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [43648] = 7, - ACTIONS(854), 1, + [47741] = 7, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2441), 2, + ACTIONS(2717), 2, sym_number, sym_private_property_identifier, - STATE(1416), 3, + STATE(1581), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43680] = 7, - ACTIONS(854), 1, + [47774] = 7, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2443), 2, + ACTIONS(2681), 2, sym_number, sym_private_property_identifier, - STATE(1380), 3, + STATE(1593), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43712] = 7, - ACTIONS(854), 1, + [47807] = 7, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(860), 2, + ACTIONS(2719), 2, sym_number, sym_private_property_identifier, - STATE(1412), 3, + STATE(1609), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43744] = 7, - ACTIONS(854), 1, + [47840] = 7, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2157), 2, + ACTIONS(2721), 2, sym_number, sym_private_property_identifier, - STATE(1484), 3, + STATE(1612), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43776] = 7, - ACTIONS(854), 1, + [47873] = 7, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(1991), 1, + ACTIONS(2277), 1, anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2445), 2, + ACTIONS(2723), 2, sym_number, sym_private_property_identifier, - STATE(1583), 3, + STATE(1572), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(872), 7, + ACTIONS(1085), 8, anon_sym_export, anon_sym_let, + anon_sym_await, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43808] = 2, + [47906] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2447), 15, + ACTIONS(2725), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -73348,8405 +83420,8911 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [43830] = 7, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(1991), 1, - anon_sym_LBRACK, + [47928] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2363), 2, - sym_number, - sym_private_property_identifier, - STATE(1571), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(872), 7, - anon_sym_export, - anon_sym_let, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [43862] = 11, - ACTIONS(2011), 1, + ACTIONS(2727), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [47950] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2729), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [47972] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2731), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [47994] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2733), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [48016] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2735), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [48038] = 11, + ACTIONS(2297), 1, anon_sym_DQUOTE, - ACTIONS(2013), 1, + ACTIONS(2299), 1, anon_sym_SQUOTE, - ACTIONS(2449), 1, + ACTIONS(2737), 1, sym_identifier, - ACTIONS(2451), 1, + ACTIONS(2739), 1, anon_sym_STAR, - ACTIONS(2453), 1, + ACTIONS(2741), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(2745), 1, anon_sym_DOT, - STATE(1223), 1, + STATE(1359), 1, sym_string, - STATE(1446), 1, + STATE(1625), 1, sym_import_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2455), 2, + ACTIONS(2743), 2, anon_sym_LPAREN, sym_optional_chain, - STATE(1713), 2, + STATE(1862), 2, sym_namespace_import, sym_named_imports, - [43899] = 8, - ACTIONS(2459), 1, - anon_sym_LBRACE, - ACTIONS(2463), 1, - anon_sym_LT, - ACTIONS(2465), 1, - anon_sym_LT_SLASH, - STATE(547), 1, - sym_jsx_closing_element, - STATE(1033), 1, - sym_jsx_opening_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2461), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(1045), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [43929] = 8, - ACTIONS(2459), 1, - anon_sym_LBRACE, - ACTIONS(2463), 1, - anon_sym_LT, - ACTIONS(2469), 1, - anon_sym_LT_SLASH, - STATE(1033), 1, - sym_jsx_opening_element, - STATE(1172), 1, - sym_jsx_closing_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2467), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(1035), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [43959] = 11, - ACTIONS(2471), 1, + [48075] = 11, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2475), 1, + ACTIONS(2751), 1, anon_sym_COLON, - ACTIONS(2477), 1, + ACTIONS(2753), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(2755), 1, sym_jsx_identifier, - ACTIONS(2481), 1, + ACTIONS(2757), 1, anon_sym_DOT, - ACTIONS(2483), 1, + ACTIONS(2759), 1, anon_sym_SLASH_GT, - STATE(1054), 1, + STATE(1185), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [43995] = 8, - ACTIONS(2459), 1, + [48111] = 8, + ACTIONS(2761), 1, anon_sym_LBRACE, - ACTIONS(2463), 1, + ACTIONS(2765), 1, anon_sym_LT, - ACTIONS(2469), 1, + ACTIONS(2767), 1, anon_sym_LT_SLASH, - STATE(1033), 1, + STATE(1149), 1, sym_jsx_opening_element, - STATE(1134), 1, + STATE(1259), 1, sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2461), 2, + ACTIONS(2763), 2, sym_jsx_text, sym_html_character_reference, - STATE(1045), 4, + STATE(1160), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [44025] = 11, - ACTIONS(2471), 1, + [48141] = 11, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2475), 1, + ACTIONS(2751), 1, anon_sym_COLON, - ACTIONS(2477), 1, + ACTIONS(2753), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(2755), 1, sym_jsx_identifier, - ACTIONS(2481), 1, + ACTIONS(2757), 1, anon_sym_DOT, - ACTIONS(2485), 1, + ACTIONS(2769), 1, anon_sym_SLASH_GT, - STATE(1066), 1, + STATE(1177), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [44061] = 8, - ACTIONS(2459), 1, + [48177] = 8, + ACTIONS(2761), 1, anon_sym_LBRACE, - ACTIONS(2463), 1, + ACTIONS(2765), 1, anon_sym_LT, - ACTIONS(2465), 1, + ACTIONS(2771), 1, anon_sym_LT_SLASH, - STATE(531), 1, + STATE(611), 1, sym_jsx_closing_element, - STATE(1033), 1, + STATE(1149), 1, sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2487), 2, + ACTIONS(2763), 2, sym_jsx_text, sym_html_character_reference, - STATE(1032), 4, + STATE(1160), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [44091] = 8, - ACTIONS(2459), 1, + [48207] = 8, + ACTIONS(2761), 1, anon_sym_LBRACE, - ACTIONS(2463), 1, + ACTIONS(2765), 1, anon_sym_LT, - ACTIONS(2489), 1, + ACTIONS(2775), 1, anon_sym_LT_SLASH, - STATE(726), 1, - sym_jsx_closing_element, - STATE(1033), 1, + STATE(1149), 1, sym_jsx_opening_element, + STATE(1255), 1, + sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2461), 2, + ACTIONS(2773), 2, sym_jsx_text, sym_html_character_reference, - STATE(1045), 4, + STATE(1156), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [44121] = 8, - ACTIONS(2459), 1, + [48237] = 8, + ACTIONS(2761), 1, anon_sym_LBRACE, - ACTIONS(2463), 1, + ACTIONS(2765), 1, anon_sym_LT, - ACTIONS(2493), 1, + ACTIONS(2767), 1, anon_sym_LT_SLASH, - STATE(1033), 1, + STATE(1149), 1, sym_jsx_opening_element, - STATE(1162), 1, + STATE(1312), 1, sym_jsx_closing_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2491), 2, + ACTIONS(2777), 2, sym_jsx_text, sym_html_character_reference, - STATE(1041), 4, + STATE(1146), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [44151] = 11, - ACTIONS(2471), 1, + [48267] = 11, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2475), 1, + ACTIONS(2751), 1, anon_sym_COLON, - ACTIONS(2477), 1, + ACTIONS(2753), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(2755), 1, sym_jsx_identifier, - ACTIONS(2481), 1, + ACTIONS(2757), 1, anon_sym_DOT, - ACTIONS(2495), 1, + ACTIONS(2779), 1, anon_sym_SLASH_GT, - STATE(1072), 1, + STATE(1182), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [44187] = 8, - ACTIONS(2459), 1, - anon_sym_LBRACE, - ACTIONS(2463), 1, - anon_sym_LT, - ACTIONS(2493), 1, - anon_sym_LT_SLASH, - STATE(1033), 1, - sym_jsx_opening_element, - STATE(1178), 1, - sym_jsx_closing_element, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2461), 2, - sym_jsx_text, - sym_html_character_reference, - STATE(1045), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [44217] = 11, - ACTIONS(2471), 1, + [48303] = 11, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2475), 1, + ACTIONS(2751), 1, anon_sym_COLON, - ACTIONS(2477), 1, + ACTIONS(2753), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(2755), 1, sym_jsx_identifier, - ACTIONS(2481), 1, + ACTIONS(2757), 1, anon_sym_DOT, - ACTIONS(2497), 1, + ACTIONS(2781), 1, anon_sym_SLASH_GT, - STATE(1055), 1, + STATE(1183), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [44253] = 8, - ACTIONS(2459), 1, + [48339] = 8, + ACTIONS(2761), 1, anon_sym_LBRACE, - ACTIONS(2463), 1, + ACTIONS(2765), 1, anon_sym_LT, - ACTIONS(2489), 1, + ACTIONS(2771), 1, anon_sym_LT_SLASH, - STATE(678), 1, + STATE(608), 1, sym_jsx_closing_element, - STATE(1033), 1, + STATE(1149), 1, sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2499), 2, + ACTIONS(2783), 2, sym_jsx_text, sym_html_character_reference, - STATE(1038), 4, + STATE(1148), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [44283] = 10, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2473), 1, + [48369] = 8, + ACTIONS(2761), 1, anon_sym_LBRACE, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(2497), 1, - anon_sym_SLASH_GT, - STATE(1061), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, - sym_jsx_namespace_name, + ACTIONS(2765), 1, + anon_sym_LT, + ACTIONS(2785), 1, + anon_sym_LT_SLASH, + STATE(790), 1, + sym_jsx_closing_element, + STATE(1149), 1, + sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + ACTIONS(2763), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1160), 4, + sym_jsx_element, sym_jsx_expression, - sym_jsx_attribute, - [44316] = 7, - ACTIONS(2501), 1, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [48399] = 8, + ACTIONS(2761), 1, anon_sym_LBRACE, - ACTIONS(2507), 1, + ACTIONS(2765), 1, anon_sym_LT, - ACTIONS(2510), 1, + ACTIONS(2785), 1, anon_sym_LT_SLASH, - STATE(1033), 1, + STATE(745), 1, + sym_jsx_closing_element, + STATE(1149), 1, sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2504), 2, + ACTIONS(2787), 2, sym_jsx_text, sym_html_character_reference, - STATE(1045), 4, + STATE(1154), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [44343] = 10, - ACTIONS(2471), 1, + [48429] = 8, + ACTIONS(2761), 1, + anon_sym_LBRACE, + ACTIONS(2765), 1, + anon_sym_LT, + ACTIONS(2775), 1, + anon_sym_LT_SLASH, + STATE(1149), 1, + sym_jsx_opening_element, + STATE(1290), 1, + sym_jsx_closing_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2763), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1160), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [48459] = 10, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2477), 1, + ACTIONS(2751), 1, + anon_sym_COLON, + ACTIONS(2753), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(2755), 1, sym_jsx_identifier, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(2483), 1, + ACTIONS(2759), 1, anon_sym_SLASH_GT, - STATE(1064), 1, + STATE(1173), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [44376] = 10, - ACTIONS(2471), 1, + [48492] = 10, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(2477), 1, + ACTIONS(2753), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(2755), 1, sym_jsx_identifier, - ACTIONS(2497), 1, + ACTIONS(2757), 1, + anon_sym_DOT, + ACTIONS(2769), 1, anon_sym_SLASH_GT, - STATE(1058), 1, + STATE(1178), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [44409] = 10, - ACTIONS(2471), 1, + [48525] = 10, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(2477), 1, + ACTIONS(2753), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(2755), 1, sym_jsx_identifier, - ACTIONS(2483), 1, + ACTIONS(2757), 1, + anon_sym_DOT, + ACTIONS(2781), 1, anon_sym_SLASH_GT, - STATE(1059), 1, + STATE(1167), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [44442] = 10, - ACTIONS(2471), 1, + [48558] = 7, + ACTIONS(2789), 1, + anon_sym_LBRACE, + ACTIONS(2795), 1, + anon_sym_LT, + ACTIONS(2798), 1, + anon_sym_LT_SLASH, + STATE(1149), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2792), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1160), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [48585] = 10, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2477), 1, + ACTIONS(2751), 1, + anon_sym_COLON, + ACTIONS(2753), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(2755), 1, sym_jsx_identifier, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(2485), 1, + ACTIONS(2779), 1, anon_sym_SLASH_GT, - STATE(1067), 1, + STATE(1181), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [44475] = 10, - ACTIONS(2471), 1, + [48618] = 10, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(2477), 1, + ACTIONS(2753), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(2755), 1, sym_jsx_identifier, - ACTIONS(2495), 1, + ACTIONS(2757), 1, + anon_sym_DOT, + ACTIONS(2759), 1, anon_sym_SLASH_GT, - STATE(1071), 1, + STATE(1186), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [44508] = 10, - ACTIONS(2471), 1, + [48651] = 10, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2477), 1, + ACTIONS(2753), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(2755), 1, sym_jsx_identifier, - ACTIONS(2481), 1, + ACTIONS(2757), 1, anon_sym_DOT, - ACTIONS(2495), 1, + ACTIONS(2779), 1, anon_sym_SLASH_GT, - STATE(1068), 1, + STATE(1184), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [44541] = 10, - ACTIONS(2471), 1, + [48684] = 10, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2475), 1, + ACTIONS(2751), 1, anon_sym_COLON, - ACTIONS(2477), 1, + ACTIONS(2753), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(2755), 1, sym_jsx_identifier, - ACTIONS(2485), 1, + ACTIONS(2781), 1, anon_sym_SLASH_GT, - STATE(1069), 1, + STATE(1179), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [44574] = 7, - ACTIONS(2473), 1, + [48717] = 10, + ACTIONS(2747), 1, + sym_identifier, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2512), 1, - anon_sym_LT, - ACTIONS(2514), 1, - anon_sym_DQUOTE, - ACTIONS(2516), 1, - anon_sym_SQUOTE, - STATE(1039), 1, - sym_jsx_opening_element, + ACTIONS(2751), 1, + anon_sym_COLON, + ACTIONS(2753), 1, + anon_sym_GT, + ACTIONS(2755), 1, + sym_jsx_identifier, + ACTIONS(2769), 1, + anon_sym_SLASH_GT, + STATE(1175), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1226), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1192), 4, - sym_jsx_element, + STATE(1305), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [44600] = 9, - ACTIONS(2471), 1, + sym_jsx_attribute, + [48750] = 9, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(2755), 1, sym_jsx_identifier, - ACTIONS(2518), 1, + ACTIONS(2800), 1, anon_sym_GT, - ACTIONS(2520), 1, + ACTIONS(2802), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1171), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [44630] = 9, - ACTIONS(2471), 1, + [48780] = 9, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(2755), 1, sym_jsx_identifier, - ACTIONS(2518), 1, + ACTIONS(2804), 1, anon_sym_GT, - ACTIONS(2522), 1, + ACTIONS(2806), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1171), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, - sym_jsx_expression, - sym_jsx_attribute, - [44660] = 7, - ACTIONS(2473), 1, + STATE(1305), 2, + sym_jsx_expression, + sym_jsx_attribute, + [48810] = 7, + ACTIONS(2749), 1, + anon_sym_LBRACE, + ACTIONS(2808), 1, + anon_sym_LT, + ACTIONS(2810), 1, + anon_sym_DQUOTE, + ACTIONS(2812), 1, + anon_sym_SQUOTE, + STATE(1150), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1291), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [48836] = 9, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2814), 1, + sym_identifier, + ACTIONS(2816), 1, + anon_sym_default, + ACTIONS(2818), 1, + anon_sym_COMMA, + ACTIONS(2820), 1, + anon_sym_RBRACE, + STATE(1443), 1, + sym_import_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1775), 2, + sym__module_export_name, + sym_string, + [48866] = 7, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2512), 1, + ACTIONS(2808), 1, anon_sym_LT, - ACTIONS(2514), 1, + ACTIONS(2810), 1, anon_sym_DQUOTE, - ACTIONS(2516), 1, + ACTIONS(2812), 1, anon_sym_SQUOTE, - STATE(1039), 1, + STATE(1150), 1, sym_jsx_opening_element, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1193), 4, + STATE(1292), 4, sym_jsx_element, sym_jsx_expression, sym_jsx_self_closing_element, sym__jsx_string, - [44686] = 9, - ACTIONS(2471), 1, + [48892] = 8, + ACTIONS(2822), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2825), 1, anon_sym_LBRACE, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(2830), 1, sym_jsx_identifier, - ACTIONS(2483), 1, - anon_sym_SLASH_GT, - STATE(1063), 1, + STATE(1171), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + ACTIONS(2828), 2, + anon_sym_GT, + anon_sym_SLASH_GT, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [44716] = 9, - ACTIONS(2471), 1, + [48920] = 8, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2835), 1, + anon_sym_COMMA, + ACTIONS(2837), 1, + anon_sym_RBRACE, + STATE(1414), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2833), 2, + anon_sym_default, sym_identifier, - ACTIONS(2473), 1, + STATE(1423), 2, + sym__module_export_name, + sym_string, + [48948] = 9, + ACTIONS(2747), 1, + sym_identifier, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(2755), 1, sym_jsx_identifier, - ACTIONS(2524), 1, + ACTIONS(2839), 1, anon_sym_GT, - ACTIONS(2526), 1, + ACTIONS(2841), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1171), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [44746] = 9, - ACTIONS(2471), 1, + [48978] = 9, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2524), 1, + ACTIONS(2753), 1, anon_sym_GT, - ACTIONS(2528), 1, + ACTIONS(2755), 1, + sym_jsx_identifier, + ACTIONS(2759), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1188), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [44776] = 9, - ACTIONS(2471), 1, + [49008] = 9, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(2755), 1, sym_jsx_identifier, - ACTIONS(2485), 1, + ACTIONS(2839), 1, + anon_sym_GT, + ACTIONS(2843), 1, anon_sym_SLASH_GT, - STATE(1074), 1, + STATE(1171), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [44806] = 9, - ACTIONS(2471), 1, + [49038] = 9, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2530), 1, + ACTIONS(2753), 1, anon_sym_GT, - ACTIONS(2532), 1, + ACTIONS(2755), 1, + sym_jsx_identifier, + ACTIONS(2779), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1187), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [44836] = 9, - ACTIONS(2471), 1, + [49068] = 9, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(2755), 1, sym_jsx_identifier, - ACTIONS(2534), 1, + ACTIONS(2845), 1, anon_sym_GT, - ACTIONS(2536), 1, + ACTIONS(2847), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1171), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [44866] = 9, - ACTIONS(2471), 1, + [49098] = 9, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(2755), 1, sym_jsx_identifier, - ACTIONS(2534), 1, + ACTIONS(2804), 1, anon_sym_GT, - ACTIONS(2538), 1, + ACTIONS(2849), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1171), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [44896] = 9, - ACTIONS(2471), 1, + [49128] = 9, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(2755), 1, sym_jsx_identifier, - ACTIONS(2530), 1, + ACTIONS(2839), 1, anon_sym_GT, - ACTIONS(2540), 1, + ACTIONS(2851), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1171), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [44926] = 9, - ACTIONS(2471), 1, + [49158] = 9, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2477), 1, - anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(2755), 1, sym_jsx_identifier, - ACTIONS(2495), 1, + ACTIONS(2800), 1, + anon_sym_GT, + ACTIONS(2853), 1, anon_sym_SLASH_GT, - STATE(1073), 1, + STATE(1171), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [44956] = 9, - ACTIONS(2471), 1, + [49188] = 9, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(2755), 1, sym_jsx_identifier, - ACTIONS(2518), 1, + ACTIONS(2839), 1, anon_sym_GT, - ACTIONS(2542), 1, + ACTIONS(2855), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1171), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [44986] = 9, - ACTIONS(2471), 1, + [49218] = 9, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(2755), 1, sym_jsx_identifier, - ACTIONS(2530), 1, + ACTIONS(2845), 1, anon_sym_GT, - ACTIONS(2544), 1, + ACTIONS(2857), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1171), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [45016] = 9, - ACTIONS(2471), 1, + [49248] = 9, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(2755), 1, sym_jsx_identifier, - ACTIONS(2530), 1, + ACTIONS(2845), 1, anon_sym_GT, - ACTIONS(2546), 1, + ACTIONS(2859), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1171), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [45046] = 9, - ACTIONS(2471), 1, + [49278] = 9, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(2755), 1, sym_jsx_identifier, - ACTIONS(2524), 1, + ACTIONS(2804), 1, anon_sym_GT, - ACTIONS(2548), 1, + ACTIONS(2861), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1171), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [45076] = 8, - ACTIONS(2550), 1, + [49308] = 9, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2553), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2558), 1, + ACTIONS(2755), 1, sym_jsx_identifier, - STATE(1070), 1, + ACTIONS(2845), 1, + anon_sym_GT, + ACTIONS(2863), 1, + anon_sym_SLASH_GT, + STATE(1171), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2556), 2, - anon_sym_GT, - anon_sym_SLASH_GT, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [45104] = 9, - ACTIONS(2471), 1, + [49338] = 9, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(2755), 1, sym_jsx_identifier, - ACTIONS(2524), 1, + ACTIONS(2804), 1, anon_sym_GT, - ACTIONS(2561), 1, + ACTIONS(2865), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1171), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [45134] = 9, - ACTIONS(2471), 1, + [49368] = 9, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(2755), 1, sym_jsx_identifier, - ACTIONS(2518), 1, + ACTIONS(2800), 1, anon_sym_GT, - ACTIONS(2563), 1, + ACTIONS(2867), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1171), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [45164] = 9, - ACTIONS(2471), 1, + [49398] = 9, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, + ACTIONS(2755), 1, sym_jsx_identifier, - ACTIONS(2534), 1, + ACTIONS(2800), 1, anon_sym_GT, - ACTIONS(2565), 1, + ACTIONS(2869), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1171), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [45194] = 9, - ACTIONS(2471), 1, + [49428] = 9, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2479), 1, - sym_jsx_identifier, - ACTIONS(2534), 1, + ACTIONS(2753), 1, anon_sym_GT, - ACTIONS(2567), 1, + ACTIONS(2755), 1, + sym_jsx_identifier, + ACTIONS(2781), 1, anon_sym_SLASH_GT, - STATE(1070), 1, + STATE(1166), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [45224] = 9, - ACTIONS(2471), 1, + [49458] = 9, + ACTIONS(2747), 1, sym_identifier, - ACTIONS(2473), 1, + ACTIONS(2749), 1, anon_sym_LBRACE, - ACTIONS(2477), 1, + ACTIONS(2753), 1, anon_sym_GT, - ACTIONS(2479), 1, + ACTIONS(2755), 1, sym_jsx_identifier, - ACTIONS(2497), 1, + ACTIONS(2769), 1, anon_sym_SLASH_GT, - STATE(1062), 1, + STATE(1180), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1119), 1, + STATE(1226), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1168), 2, + STATE(1305), 2, sym_jsx_expression, sym_jsx_attribute, - [45254] = 8, - ACTIONS(854), 1, + [49488] = 7, + ACTIONS(1100), 1, + sym_identifier, + ACTIONS(1102), 1, + anon_sym_LBRACE, + ACTIONS(1104), 1, + anon_sym_of, + ACTIONS(1106), 1, + anon_sym_LBRACK, + STATE(1390), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1311), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [49513] = 7, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(2569), 1, - sym_identifier, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2573), 1, + ACTIONS(2871), 1, anon_sym_RBRACE, - STATE(1295), 1, + STATE(1541), 1, sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1300), 2, + ACTIONS(2833), 2, + anon_sym_default, + sym_identifier, + STATE(1423), 2, sym__module_export_name, sym_string, - [45281] = 8, - ACTIONS(854), 1, + [49538] = 8, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(2575), 1, + ACTIONS(2814), 1, sym_identifier, - ACTIONS(2577), 1, - anon_sym_COMMA, - ACTIONS(2579), 1, + ACTIONS(2816), 1, + anon_sym_default, + ACTIONS(2873), 1, anon_sym_RBRACE, - STATE(1299), 1, + STATE(1592), 1, sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1628), 2, + STATE(1775), 2, sym__module_export_name, sym_string, - [45308] = 4, - ACTIONS(2581), 1, - anon_sym_COMMA, - STATE(1078), 1, - aux_sym_sequence_expression_repeat1, + [49565] = 7, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2875), 1, + anon_sym_RBRACE, + STATE(1541), 1, + sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1602), 5, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [45326] = 6, - ACTIONS(897), 1, + ACTIONS(2833), 2, + anon_sym_default, + sym_identifier, + STATE(1423), 2, + sym__module_export_name, + sym_string, + [49590] = 7, + ACTIONS(1102), 1, anon_sym_LBRACE, - ACTIONS(899), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(2584), 1, + ACTIONS(1422), 1, sym_identifier, - STATE(1308), 1, + ACTIONS(2877), 1, + anon_sym_of, + STATE(1385), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1191), 3, + STATE(1202), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [45348] = 6, - ACTIONS(897), 1, + [49615] = 7, + ACTIONS(1100), 1, + sym_identifier, + ACTIONS(1102), 1, anon_sym_LBRACE, - ACTIONS(899), 1, + ACTIONS(1104), 1, + anon_sym_of, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, - sym_identifier, - STATE(1255), 1, + STATE(1391), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1092), 3, + STATE(1311), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [45370] = 6, - ACTIONS(897), 1, + [49640] = 7, + ACTIONS(1100), 1, + sym_identifier, + ACTIONS(1102), 1, anon_sym_LBRACE, - ACTIONS(899), 1, + ACTIONS(1104), 1, + anon_sym_of, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, - sym_identifier, - STATE(1260), 1, + STATE(1380), 1, sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1099), 3, + STATE(1311), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [45392] = 7, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(2111), 1, - anon_sym_EQ, - ACTIONS(2115), 1, + [49665] = 8, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2814), 1, + sym_identifier, + ACTIONS(2816), 1, + anon_sym_default, + ACTIONS(2879), 1, anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + STATE(1592), 1, + sym_import_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [45416] = 7, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(2107), 1, - anon_sym_RBRACE, - ACTIONS(2111), 1, - anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + STATE(1775), 2, + sym__module_export_name, + sym_string, + [49692] = 7, + ACTIONS(1100), 1, + sym_identifier, + ACTIONS(1102), 1, + anon_sym_LBRACE, + ACTIONS(1104), 1, + anon_sym_of, + ACTIONS(1106), 1, + anon_sym_LBRACK, + STATE(1385), 1, + sym_variable_declarator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [45440] = 7, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(766), 1, - anon_sym_RBRACE, - ACTIONS(2111), 1, + STATE(1311), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [49717] = 7, + ACTIONS(1102), 1, + anon_sym_LBRACE, + ACTIONS(1106), 1, + anon_sym_LBRACK, + ACTIONS(2881), 1, + sym_identifier, + ACTIONS(2883), 1, + anon_sym_of, + STATE(1380), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1208), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [49742] = 7, + ACTIONS(1100), 1, + sym_identifier, + ACTIONS(1102), 1, + anon_sym_LBRACE, + ACTIONS(1104), 1, + anon_sym_of, + ACTIONS(1106), 1, + anon_sym_LBRACK, + STATE(1415), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1311), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [49767] = 6, + ACTIONS(862), 1, anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + ACTIONS(2889), 1, + sym__automatic_semicolon, + STATE(1425), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [45464] = 7, - ACTIONS(101), 1, + ACTIONS(2885), 2, anon_sym_COMMA, - ACTIONS(800), 1, - anon_sym_RBRACE, - ACTIONS(2111), 1, - anon_sym_EQ, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, - aux_sym_object_repeat1, + anon_sym_SEMI, + ACTIONS(2887), 2, + anon_sym_of, + anon_sym_in, + [49789] = 6, + ACTIONS(1102), 1, + anon_sym_LBRACE, + ACTIONS(1106), 1, + anon_sym_LBRACK, + ACTIONS(2892), 1, + sym_identifier, + ACTIONS(2894), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [45488] = 4, - ACTIONS(1735), 1, + STATE(1495), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [49811] = 4, + ACTIONS(2896), 1, anon_sym_COMMA, - STATE(1078), 1, + STATE(1204), 1, aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2590), 5, + ACTIONS(1836), 5, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [45506] = 7, - ACTIONS(854), 1, + [49829] = 6, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(2575), 1, - sym_identifier, - ACTIONS(2592), 1, - anon_sym_RBRACE, - STATE(1491), 1, - sym_import_specifier, + STATE(1541), 1, + sym_export_specifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1628), 2, + ACTIONS(2833), 2, + anon_sym_default, + sym_identifier, + STATE(1423), 2, sym__module_export_name, sym_string, - [45530] = 2, + [49851] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2594), 7, + ACTIONS(2899), 7, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_RPAREN, anon_sym_in, - anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [45544] = 2, + [49865] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2596), 7, + ACTIONS(2901), 7, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_RPAREN, anon_sym_in, - anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [45558] = 7, - ACTIONS(101), 1, - anon_sym_COMMA, - ACTIONS(792), 1, - anon_sym_RBRACE, - ACTIONS(2111), 1, + [49879] = 5, + ACTIONS(2903), 1, anon_sym_EQ, - STATE(1310), 1, - aux_sym_object_repeat1, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [45582] = 7, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(2569), 1, - sym_identifier, - ACTIONS(2598), 1, - anon_sym_RBRACE, - STATE(1468), 1, - sym_export_specifier, + STATE(1285), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1300), 2, - sym__module_export_name, - sym_string, - [45606] = 5, - ACTIONS(2604), 1, + ACTIONS(2887), 2, + anon_sym_of, + anon_sym_in, + ACTIONS(2885), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [49899] = 6, + ACTIONS(862), 1, anon_sym_EQ, - STATE(1194), 1, + ACTIONS(864), 1, + sym__automatic_semicolon, + STATE(1408), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2602), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(2600), 3, - sym__automatic_semicolon, + ACTIONS(858), 2, anon_sym_COMMA, anon_sym_SEMI, - [45626] = 2, + ACTIONS(2905), 2, + anon_sym_of, + anon_sym_in, + [49921] = 7, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(2397), 1, + anon_sym_EQ, + ACTIONS(2401), 1, + anon_sym_RBRACE, + STATE(1418), 1, + aux_sym_object_repeat1, + STATE(1452), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2606), 7, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [49945] = 7, + ACTIONS(103), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + ACTIONS(2397), 1, anon_sym_EQ, - anon_sym_RBRACK, - [45640] = 5, - ACTIONS(2475), 1, + ACTIONS(2399), 1, + anon_sym_RBRACE, + STATE(1418), 1, + aux_sym_object_repeat1, + STATE(1452), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2395), 2, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2608), 1, - sym_identifier, - ACTIONS(2612), 1, + [49969] = 7, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(216), 1, + anon_sym_RBRACE, + ACTIONS(2397), 1, anon_sym_EQ, + STATE(1418), 1, + aux_sym_object_repeat1, + STATE(1452), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2610), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [45660] = 6, - ACTIONS(897), 1, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [49993] = 6, + ACTIONS(1102), 1, anon_sym_LBRACE, - ACTIONS(899), 1, + ACTIONS(1106), 1, anon_sym_LBRACK, - ACTIONS(2584), 1, + ACTIONS(1469), 1, sym_identifier, - STATE(1255), 1, - sym_variable_declarator, + ACTIONS(2907), 1, + anon_sym_of, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1191), 3, + STATE(1469), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [45682] = 7, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(2569), 1, - sym_identifier, - ACTIONS(2614), 1, + [50015] = 7, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(2393), 1, anon_sym_RBRACE, - STATE(1468), 1, - sym_export_specifier, + ACTIONS(2397), 1, + anon_sym_EQ, + STATE(1418), 1, + aux_sym_object_repeat1, + STATE(1452), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1300), 2, - sym__module_export_name, - sym_string, - [45706] = 7, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(2575), 1, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [50039] = 5, + ACTIONS(2751), 1, + anon_sym_COLON, + ACTIONS(2909), 1, sym_identifier, - ACTIONS(2616), 1, - anon_sym_RBRACE, - STATE(1491), 1, - sym_import_specifier, + ACTIONS(2913), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1628), 2, - sym__module_export_name, - sym_string, - [45730] = 6, - ACTIONS(897), 1, + ACTIONS(2911), 4, anon_sym_LBRACE, - ACTIONS(899), 1, - anon_sym_LBRACK, - ACTIONS(2584), 1, - sym_identifier, - STATE(1260), 1, - sym_variable_declarator, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [50059] = 5, + ACTIONS(2903), 1, + anon_sym_EQ, + STATE(1283), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1191), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [45752] = 6, - ACTIONS(2618), 1, - anon_sym_EQ, - ACTIONS(2620), 1, + ACTIONS(2905), 2, + anon_sym_of, + anon_sym_in, + ACTIONS(858), 3, sym__automatic_semicolon, - STATE(1318), 1, - sym__initializer, + anon_sym_COMMA, + anon_sym_SEMI, + [50079] = 7, + ACTIONS(103), 1, + anon_sym_COMMA, + ACTIONS(171), 1, + anon_sym_RBRACE, + ACTIONS(2397), 1, + anon_sym_EQ, + STATE(1452), 1, + aux_sym_object_pattern_repeat1, + STATE(1487), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [50103] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2600), 2, + ACTIONS(2915), 7, anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2602), 2, - anon_sym_in, + anon_sym_RBRACE, anon_sym_of, - [45774] = 2, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_EQ, + anon_sym_RBRACK, + [50117] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2623), 7, + ACTIONS(2917), 7, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_RPAREN, anon_sym_in, - anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [45788] = 7, - ACTIONS(101), 1, + [50131] = 7, + ACTIONS(103), 1, anon_sym_COMMA, - ACTIONS(2111), 1, - anon_sym_EQ, - ACTIONS(2113), 1, + ACTIONS(351), 1, anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, - STATE(1350), 1, + ACTIONS(2397), 1, + anon_sym_EQ, + STATE(1418), 1, aux_sym_object_repeat1, + STATE(1452), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 2, + ACTIONS(2395), 2, anon_sym_LPAREN, anon_sym_COLON, - [45812] = 2, + [50155] = 7, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(2814), 1, + sym_identifier, + ACTIONS(2816), 1, + anon_sym_default, + STATE(1592), 1, + sym_import_specifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1775), 2, + sym__module_export_name, + sym_string, + [50179] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2625), 7, + ACTIONS(2919), 7, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_of, anon_sym_RPAREN, anon_sym_in, - anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [45826] = 5, - ACTIONS(897), 1, + [50193] = 6, + ACTIONS(1969), 1, anon_sym_LBRACE, - ACTIONS(899), 1, - anon_sym_LBRACK, - ACTIONS(2627), 1, + ACTIONS(2921), 1, sym_identifier, + ACTIONS(2923), 1, + anon_sym_of, + ACTIONS(2925), 1, + anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1313), 3, + STATE(1338), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [45845] = 5, - ACTIONS(2629), 1, - anon_sym_default, - ACTIONS(2631), 1, - anon_sym_RBRACE, - ACTIONS(2633), 1, - anon_sym_case, + [50215] = 4, + ACTIONS(1983), 1, + anon_sym_COMMA, + STATE(1204), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1108), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [45864] = 3, - ACTIONS(2635), 1, + ACTIONS(2927), 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [50233] = 3, + ACTIONS(2929), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2637), 5, + ACTIONS(2931), 5, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT, - sym_jsx_identifier, - anon_sym_DOT, - anon_sym_SLASH_GT, - [45879] = 5, - ACTIONS(2641), 1, - anon_sym_BQUOTE, - ACTIONS(2643), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2639), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1123), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [45898] = 6, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(2575), 1, - sym_identifier, - STATE(1491), 1, - sym_import_specifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1628), 2, - sym__module_export_name, - sym_string, - [45919] = 5, - ACTIONS(2629), 1, - anon_sym_default, - ACTIONS(2633), 1, - anon_sym_case, - ACTIONS(2645), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1131), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [45938] = 6, - ACTIONS(2618), 1, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [50248] = 4, + ACTIONS(2933), 1, + sym_identifier, + ACTIONS(2937), 1, anon_sym_EQ, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1451), 1, - sym__initializer, - STATE(1601), 1, - sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2649), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [45959] = 2, + ACTIONS(2935), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [50265] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1648), 6, + ACTIONS(1912), 6, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_of, anon_sym_SEMI, anon_sym_in, - anon_sym_of, anon_sym_EQ, - [45972] = 6, - ACTIONS(2618), 1, + [50278] = 6, + ACTIONS(862), 1, anon_sym_EQ, - ACTIONS(2647), 1, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1447), 1, - sym__initializer, - STATE(1586), 1, + STATE(1515), 1, sym_formal_parameters, + STATE(1702), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2651), 2, + ACTIONS(2941), 2, sym__automatic_semicolon, anon_sym_SEMI, - [45993] = 2, + [50299] = 5, + ACTIONS(2945), 1, + anon_sym_BQUOTE, + ACTIONS(2947), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1534), 6, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_LPAREN, - anon_sym_COLON, - [46006] = 5, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(2653), 1, + ACTIONS(2943), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1240), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [50318] = 3, + ACTIONS(2949), 1, sym_identifier, - ACTIONS(2655), 1, - anon_sym_LBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1251), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [46025] = 6, - ACTIONS(2618), 1, + ACTIONS(2951), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + anon_sym_SLASH_GT, + [50333] = 6, + ACTIONS(862), 1, anon_sym_EQ, - ACTIONS(2647), 1, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1448), 1, + STATE(1500), 1, sym__initializer, - STATE(1587), 1, + STATE(1556), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2657), 2, + ACTIONS(2953), 2, sym__automatic_semicolon, anon_sym_SEMI, - [46046] = 5, - ACTIONS(2643), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2661), 1, + [50354] = 6, + ACTIONS(862), 1, + anon_sym_EQ, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1557), 1, + sym_formal_parameters, + STATE(1678), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2955), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [50375] = 5, + ACTIONS(2960), 1, anon_sym_BQUOTE, + ACTIONS(2962), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2659), 2, + ACTIONS(2957), 2, sym__template_chars, sym_escape_sequence, - STATE(1106), 2, + STATE(1233), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [46065] = 2, + [50394] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2596), 6, + ACTIONS(2919), 6, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_of, anon_sym_SEMI, anon_sym_in, - anon_sym_of, anon_sym_EQ, - [46078] = 5, - ACTIONS(1885), 1, - anon_sym_LBRACE, - ACTIONS(2655), 1, - anon_sym_LBRACK, - ACTIONS(2663), 1, - sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1634), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [46097] = 2, + [50407] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1646), 6, - sym__automatic_semicolon, + ACTIONS(1753), 6, + anon_sym_as, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [46110] = 4, - ACTIONS(2665), 1, - sym_identifier, - ACTIONS(2669), 1, - anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COLON, + [50420] = 5, + ACTIONS(2965), 1, + anon_sym_default, + ACTIONS(2967), 1, + anon_sym_RBRACE, + ACTIONS(2969), 1, + anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2667), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [46127] = 2, + STATE(1246), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [50439] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1538), 6, + ACTIONS(1680), 6, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_from, anon_sym_LPAREN, anon_sym_COLON, - [46140] = 2, + [50452] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2594), 6, + ACTIONS(2899), 6, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_of, anon_sym_SEMI, anon_sym_in, - anon_sym_of, anon_sym_EQ, - [46153] = 5, - ACTIONS(2643), 1, + [50465] = 5, + ACTIONS(1075), 1, + anon_sym_DQUOTE, + ACTIONS(1077), 1, + anon_sym_SQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2971), 2, + anon_sym_default, + sym_identifier, + STATE(1805), 2, + sym__module_export_name, + sym_string, + [50484] = 5, + ACTIONS(2947), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, + ACTIONS(2975), 1, anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2639), 2, + ACTIONS(2973), 2, sym__template_chars, sym_escape_sequence, - STATE(1123), 2, + STATE(1233), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [46172] = 5, - ACTIONS(2676), 1, - anon_sym_BQUOTE, - ACTIONS(2678), 1, + [50503] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1914), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_in, + anon_sym_EQ, + [50516] = 5, + ACTIONS(2947), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2979), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2673), 2, + ACTIONS(2977), 2, sym__template_chars, sym_escape_sequence, - STATE(1123), 2, + STATE(1244), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [46191] = 3, - ACTIONS(2681), 1, - sym_identifier, + [50535] = 5, + ACTIONS(2981), 1, + anon_sym_default, + ACTIONS(2984), 1, + anon_sym_RBRACE, + ACTIONS(2986), 1, + anon_sym_case, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2683), 5, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [46206] = 6, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(2569), 1, - sym_identifier, - STATE(1468), 1, - sym_export_specifier, + STATE(1243), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [50554] = 5, + ACTIONS(2947), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2989), 1, + anon_sym_BQUOTE, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1300), 2, - sym__module_export_name, - sym_string, - [46227] = 2, + ACTIONS(2973), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1233), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [50573] = 6, + ACTIONS(862), 1, + anon_sym_EQ, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1617), 1, + sym_formal_parameters, + STATE(1732), 1, + sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1644), 6, + ACTIONS(2991), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [46240] = 2, + [50594] = 5, + ACTIONS(2965), 1, + anon_sym_default, + ACTIONS(2969), 1, + anon_sym_case, + ACTIONS(2993), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2625), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [46253] = 2, + STATE(1243), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [50613] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2623), 6, + ACTIONS(2915), 6, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_of, anon_sym_SEMI, anon_sym_in, - anon_sym_of, anon_sym_EQ, - [46266] = 2, + [50626] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2606), 6, + ACTIONS(2901), 6, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_of, anon_sym_SEMI, anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [46279] = 6, - ACTIONS(2618), 1, anon_sym_EQ, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1455), 1, - sym__initializer, - STATE(1551), 1, - sym_formal_parameters, + [50639] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2685), 2, + ACTIONS(2917), 6, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, anon_sym_SEMI, - [46300] = 5, - ACTIONS(2687), 1, - anon_sym_default, - ACTIONS(2690), 1, - anon_sym_RBRACE, - ACTIONS(2692), 1, - anon_sym_case, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - STATE(1131), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [46319] = 5, - ACTIONS(2643), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2697), 1, - anon_sym_BQUOTE, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2695), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1122), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [46338] = 5, - ACTIONS(854), 1, + anon_sym_in, + anon_sym_EQ, + [50652] = 5, + ACTIONS(1075), 1, anon_sym_DQUOTE, - ACTIONS(856), 1, + ACTIONS(1077), 1, anon_sym_SQUOTE, - ACTIONS(2699), 1, - sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1654), 2, + ACTIONS(2995), 2, + anon_sym_default, + sym_identifier, + STATE(1543), 2, sym__module_export_name, sym_string, - [46356] = 3, - ACTIONS(1460), 1, - anon_sym_LT, + [50671] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1462), 4, - sym_jsx_text, + ACTIONS(1916), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_in, + anon_sym_EQ, + [50684] = 5, + ACTIONS(1969), 1, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [46370] = 3, - ACTIONS(2701), 1, + ACTIONS(2925), 1, + anon_sym_LBRACK, + ACTIONS(2997), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1840), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [50703] = 3, + ACTIONS(2999), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1302), 4, + ACTIONS(1543), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - [46384] = 3, - ACTIONS(2706), 1, + [50717] = 3, + ACTIONS(3003), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2704), 4, + ACTIONS(3001), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [46398] = 6, - ACTIONS(2708), 1, - sym_identifier, - ACTIONS(2710), 1, - anon_sym_GT, - ACTIONS(2712), 1, - sym_jsx_identifier, - STATE(1044), 1, - sym_nested_identifier, - STATE(1075), 1, - sym_jsx_namespace_name, + [50731] = 3, + ACTIONS(1658), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46418] = 2, + ACTIONS(1660), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [50745] = 3, + ACTIONS(1603), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1302), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_RBRACK, - [46430] = 6, - ACTIONS(2710), 1, + ACTIONS(1605), 4, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(2714), 1, - sym_identifier, - ACTIONS(2716), 1, sym_jsx_identifier, - STATE(1051), 1, - sym_nested_identifier, - STATE(1065), 1, - sym_jsx_namespace_name, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [46450] = 3, - ACTIONS(2718), 1, + anon_sym_SLASH_GT, + [50759] = 3, + ACTIONS(3005), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2720), 4, + ACTIONS(3007), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [46464] = 6, - ACTIONS(2722), 1, + [50773] = 3, + ACTIONS(1666), 1, sym_identifier, - ACTIONS(2724), 1, - anon_sym_LBRACE, - ACTIONS(2726), 1, - anon_sym_extends, - STATE(526), 1, - sym_class_body, - STATE(1533), 1, - sym_class_heritage, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [46484] = 6, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2728), 1, - anon_sym_export, - ACTIONS(2730), 1, - anon_sym_class, - STATE(944), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46504] = 3, - ACTIONS(2732), 1, + ACTIONS(1668), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [50787] = 3, + ACTIONS(1670), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2734), 4, + ACTIONS(1672), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [46518] = 6, - ACTIONS(2736), 1, + [50801] = 6, + ACTIONS(3009), 1, sym_identifier, - ACTIONS(2738), 1, + ACTIONS(3011), 1, anon_sym_GT, - ACTIONS(2740), 1, + ACTIONS(3013), 1, sym_jsx_identifier, - STATE(1417), 1, + STATE(1163), 1, sym_nested_identifier, - STATE(1721), 1, + STATE(1176), 1, sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46538] = 6, - ACTIONS(2742), 1, + [50821] = 6, + ACTIONS(3015), 1, sym_identifier, - ACTIONS(2744), 1, - anon_sym_GT, - ACTIONS(2746), 1, - sym_jsx_identifier, - STATE(1536), 1, - sym_nested_identifier, - STATE(1706), 1, - sym_jsx_namespace_name, + ACTIONS(3017), 1, + anon_sym_LBRACE, + ACTIONS(3019), 1, + anon_sym_extends, + STATE(732), 1, + sym_class_body, + STATE(1510), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46558] = 3, - ACTIONS(1484), 1, - anon_sym_LT, + [50841] = 6, + ACTIONS(2357), 1, + anon_sym_COMMA, + ACTIONS(2395), 1, + anon_sym_COLON, + ACTIONS(2397), 1, + anon_sym_EQ, + ACTIONS(3021), 1, + anon_sym_RBRACE, + STATE(1419), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1486), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [46572] = 3, - ACTIONS(1484), 1, - anon_sym_LT, + [50861] = 3, + ACTIONS(1694), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1486), 4, - sym_jsx_text, + ACTIONS(1696), 4, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [46586] = 6, - ACTIONS(2710), 1, anon_sym_GT, - ACTIONS(2748), 1, - sym_identifier, - ACTIONS(2750), 1, sym_jsx_identifier, - STATE(1046), 1, - sym_nested_identifier, - STATE(1057), 1, - sym_jsx_namespace_name, + anon_sym_SLASH_GT, + [50875] = 3, + ACTIONS(1694), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46606] = 3, - ACTIONS(1484), 1, - anon_sym_LT, + ACTIONS(1696), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [50889] = 3, + ACTIONS(1694), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1486), 4, - sym_jsx_text, + ACTIONS(1696), 4, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [46620] = 3, - ACTIONS(1484), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [50903] = 3, + ACTIONS(3025), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1486), 4, + ACTIONS(3023), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [46634] = 6, - ACTIONS(2087), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, - anon_sym_COLON, - ACTIONS(2111), 1, - anon_sym_EQ, - ACTIONS(2752), 1, - anon_sym_RBRACE, - STATE(1352), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [46654] = 3, - ACTIONS(2756), 1, - anon_sym_LT, + [50917] = 6, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(3027), 1, + anon_sym_export, + ACTIONS(3029), 1, + anon_sym_class, + STATE(1041), 1, + aux_sym_export_statement_repeat1, + STATE(1097), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2754), 4, - sym_jsx_text, + [50937] = 6, + ACTIONS(3017), 1, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [46668] = 6, - ACTIONS(2726), 1, + ACTIONS(3019), 1, anon_sym_extends, - ACTIONS(2758), 1, + ACTIONS(3031), 1, sym_identifier, - ACTIONS(2760), 1, - anon_sym_LBRACE, - STATE(731), 1, + STATE(732), 1, sym_class_body, - STATE(1566), 1, + STATE(1510), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46688] = 3, - ACTIONS(2756), 1, - anon_sym_LT, + [50957] = 3, + ACTIONS(1694), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2754), 4, - sym_jsx_text, + ACTIONS(1696), 4, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [46702] = 3, - ACTIONS(1516), 1, - anon_sym_LT, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [50971] = 3, + ACTIONS(1599), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1518), 4, - sym_jsx_text, + ACTIONS(1601), 4, anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [46716] = 6, - ACTIONS(2726), 1, - anon_sym_extends, - ACTIONS(2760), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [50985] = 6, + ACTIONS(3017), 1, anon_sym_LBRACE, - ACTIONS(2762), 1, + ACTIONS(3019), 1, + anon_sym_extends, + ACTIONS(3033), 1, sym_identifier, - STATE(637), 1, + STATE(748), 1, sym_class_body, - STATE(1560), 1, + STATE(1656), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46736] = 3, - ACTIONS(2756), 1, + [51005] = 3, + ACTIONS(3037), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2754), 4, + ACTIONS(3035), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [46750] = 6, - ACTIONS(2726), 1, - anon_sym_extends, - ACTIONS(2760), 1, + [51019] = 6, + ACTIONS(3017), 1, anon_sym_LBRACE, - ACTIONS(2764), 1, + ACTIONS(3019), 1, + anon_sym_extends, + ACTIONS(3039), 1, sym_identifier, - STATE(637), 1, + STATE(748), 1, sym_class_body, - STATE(1560), 1, + STATE(1656), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46770] = 3, - ACTIONS(2766), 1, - anon_sym_EQ, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1309), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [46784] = 4, - ACTIONS(2111), 1, - anon_sym_EQ, + [51039] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 2, + ACTIONS(1680), 5, + sym__automatic_semicolon, + anon_sym_with, anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2130), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [46800] = 6, - ACTIONS(2726), 1, - anon_sym_extends, - ACTIONS(2760), 1, - anon_sym_LBRACE, - ACTIONS(2768), 1, - sym_identifier, - STATE(731), 1, - sym_class_body, - STATE(1566), 1, - sym_class_heritage, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [46820] = 3, - ACTIONS(1396), 1, - sym_identifier, + anon_sym_SEMI, + anon_sym_EQ, + [51051] = 3, + ACTIONS(1603), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1398), 4, + ACTIONS(1605), 4, + sym_jsx_text, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [46834] = 3, - ACTIONS(2706), 1, + sym_html_character_reference, + anon_sym_LT_SLASH, + [51065] = 3, + ACTIONS(3041), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2704), 4, + ACTIONS(3043), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [46848] = 6, - ACTIONS(2710), 1, - anon_sym_GT, - ACTIONS(2770), 1, - sym_identifier, - ACTIONS(2772), 1, - sym_jsx_identifier, - STATE(1049), 1, - sym_nested_identifier, - STATE(1060), 1, - sym_jsx_namespace_name, + [51079] = 5, + ACTIONS(2273), 1, + anon_sym_COMMA, + ACTIONS(2416), 1, + anon_sym_RBRACE, + STATE(1464), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46868] = 3, - ACTIONS(2776), 1, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [51097] = 3, + ACTIONS(3037), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2774), 4, + ACTIONS(3035), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [46882] = 6, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2778), 1, - anon_sym_export, - ACTIONS(2780), 1, - anon_sym_class, - STATE(944), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [46902] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1534), 5, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [46914] = 3, - ACTIONS(2782), 1, + [51111] = 6, + ACTIONS(3045), 1, sym_identifier, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2784), 4, - anon_sym_LBRACE, + ACTIONS(3047), 1, anon_sym_GT, + ACTIONS(3049), 1, sym_jsx_identifier, - anon_sym_SLASH_GT, - [46928] = 6, - ACTIONS(2724), 1, - anon_sym_LBRACE, - ACTIONS(2726), 1, - anon_sym_extends, - ACTIONS(2786), 1, - sym_identifier, - STATE(549), 1, - sym_class_body, - STATE(1584), 1, - sym_class_heritage, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [46948] = 6, - ACTIONS(2726), 1, - anon_sym_extends, - ACTIONS(2760), 1, - anon_sym_LBRACE, - ACTIONS(2788), 1, - sym_identifier, - STATE(637), 1, - sym_class_body, - STATE(1560), 1, - sym_class_heritage, + STATE(1736), 1, + sym_nested_identifier, + STATE(1846), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [46968] = 5, - ACTIONS(854), 1, - anon_sym_DQUOTE, - ACTIONS(856), 1, - anon_sym_SQUOTE, - ACTIONS(2790), 1, - sym_identifier, + [51131] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1479), 2, - sym__module_export_name, - sym_string, - [46986] = 3, - ACTIONS(1396), 1, + ACTIONS(1530), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_RBRACK, + [51143] = 3, + ACTIONS(1666), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1398), 4, + ACTIONS(1668), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [47000] = 3, - ACTIONS(1425), 1, - sym_identifier, + [51157] = 3, + ACTIONS(3051), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1530), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [51171] = 4, + ACTIONS(3056), 1, + anon_sym_of, + ACTIONS(3058), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1427), 4, + ACTIONS(3054), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [51187] = 6, + ACTIONS(3017), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [47014] = 6, - ACTIONS(1333), 1, - anon_sym_LPAREN, - ACTIONS(2792), 1, + ACTIONS(3019), 1, + anon_sym_extends, + ACTIONS(3060), 1, sym_identifier, - ACTIONS(2794), 1, - anon_sym_LBRACK, - ACTIONS(2796), 1, - sym_private_property_identifier, - STATE(545), 1, - sym_arguments, + STATE(732), 1, + sym_class_body, + STATE(1510), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47034] = 3, - ACTIONS(2798), 1, - anon_sym_EQ, + [51207] = 4, + ACTIONS(3064), 1, + anon_sym_of, + ACTIONS(3066), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1302), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [47048] = 5, - ACTIONS(1987), 1, + ACTIONS(3062), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(2133), 1, - anon_sym_RBRACE, - STATE(1296), 1, - aux_sym_object_repeat1, + anon_sym_SEMI, + [51223] = 6, + ACTIONS(3019), 1, + anon_sym_extends, + ACTIONS(3068), 1, + sym_identifier, + ACTIONS(3070), 1, + anon_sym_LBRACE, + STATE(604), 1, + sym_class_body, + STATE(1738), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [47066] = 3, - ACTIONS(1456), 1, - sym_identifier, + [51243] = 3, + ACTIONS(3074), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1458), 4, + ACTIONS(3072), 4, + sym_jsx_text, anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [51257] = 6, + ACTIONS(3011), 1, anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [47080] = 3, - ACTIONS(1460), 1, + ACTIONS(3076), 1, sym_identifier, + ACTIONS(3078), 1, + sym_jsx_identifier, + STATE(1158), 1, + sym_nested_identifier, + STATE(1190), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1462), 4, + [51277] = 6, + ACTIONS(3017), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [47094] = 3, - ACTIONS(1425), 1, + ACTIONS(3019), 1, + anon_sym_extends, + ACTIONS(3080), 1, + sym_identifier, + STATE(748), 1, + sym_class_body, + STATE(1656), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51297] = 3, + ACTIONS(1670), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1427), 4, + ACTIONS(1672), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [47108] = 3, - ACTIONS(1484), 1, + [51311] = 3, + ACTIONS(3082), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1486), 4, + ACTIONS(3084), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [47122] = 3, - ACTIONS(1484), 1, + [51325] = 3, + ACTIONS(3086), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1486), 4, + ACTIONS(3088), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [47136] = 3, - ACTIONS(1484), 1, + [51339] = 6, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(3090), 1, sym_identifier, + ACTIONS(3092), 1, + anon_sym_LBRACK, + ACTIONS(3094), 1, + sym_private_property_identifier, + STATE(609), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1486), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [47150] = 3, - ACTIONS(1484), 1, - sym_identifier, + [51359] = 3, + ACTIONS(1694), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1486), 4, + ACTIONS(1696), 4, + sym_jsx_text, anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [51373] = 6, + ACTIONS(3096), 1, + sym_identifier, + ACTIONS(3098), 1, anon_sym_GT, + ACTIONS(3100), 1, sym_jsx_identifier, - anon_sym_SLASH_GT, - [47164] = 3, - ACTIONS(1516), 1, - sym_identifier, + STATE(1550), 1, + sym_nested_identifier, + STATE(1799), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1518), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [47178] = 6, - ACTIONS(2726), 1, + [51393] = 6, + ACTIONS(2357), 1, + anon_sym_COMMA, + ACTIONS(2395), 1, + anon_sym_COLON, + ACTIONS(2397), 1, + anon_sym_EQ, + ACTIONS(3102), 1, + anon_sym_RBRACE, + STATE(1452), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51413] = 4, + ACTIONS(2397), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2436), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [51429] = 6, + ACTIONS(3019), 1, anon_sym_extends, - ACTIONS(2760), 1, + ACTIONS(3070), 1, anon_sym_LBRACE, - ACTIONS(2801), 1, + ACTIONS(3104), 1, sym_identifier, - STATE(731), 1, + STATE(615), 1, sym_class_body, - STATE(1566), 1, + STATE(1554), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47198] = 3, - ACTIONS(2805), 1, + [51449] = 3, + ACTIONS(1694), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2803), 4, + ACTIONS(1696), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [47212] = 6, - ACTIONS(2807), 1, - sym_identifier, - ACTIONS(2809), 1, - anon_sym_GT, - ACTIONS(2811), 1, - sym_jsx_identifier, - STATE(1582), 1, - sym_nested_identifier, - STATE(1679), 1, - sym_jsx_namespace_name, + [51463] = 3, + ACTIONS(1694), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47232] = 6, - ACTIONS(2813), 1, - sym_identifier, - ACTIONS(2815), 1, - anon_sym_GT, - ACTIONS(2817), 1, - sym_jsx_identifier, - STATE(1392), 1, - sym_nested_identifier, - STATE(1624), 1, - sym_jsx_namespace_name, + ACTIONS(1696), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [51477] = 3, + ACTIONS(3108), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47252] = 3, - ACTIONS(2756), 1, + ACTIONS(3106), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [51491] = 3, + ACTIONS(1694), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2754), 4, + ACTIONS(1696), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [47266] = 6, - ACTIONS(2087), 1, - anon_sym_COMMA, - ACTIONS(2109), 1, - anon_sym_COLON, - ACTIONS(2111), 1, - anon_sym_EQ, - ACTIONS(2819), 1, - anon_sym_RBRACE, - STATE(1311), 1, - aux_sym_object_pattern_repeat1, + [51505] = 6, + ACTIONS(3011), 1, + anon_sym_GT, + ACTIONS(3110), 1, + sym_identifier, + ACTIONS(3112), 1, + sym_jsx_identifier, + STATE(1159), 1, + sym_nested_identifier, + STATE(1189), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47286] = 4, - ACTIONS(2618), 1, + [51525] = 4, + ACTIONS(862), 1, anon_sym_EQ, - STATE(1318), 1, + STATE(1408), 1, sym__initializer, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2600), 3, + ACTIONS(858), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [47302] = 3, - ACTIONS(2821), 1, + [51541] = 3, + ACTIONS(3114), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2823), 4, + ACTIONS(3116), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [47316] = 3, - ACTIONS(2825), 1, - sym_identifier, + [51555] = 6, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(3118), 1, + anon_sym_export, + ACTIONS(3120), 1, + anon_sym_class, + STATE(1041), 1, + aux_sym_export_statement_repeat1, + STATE(1097), 1, + sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2827), 4, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - [47330] = 4, - ACTIONS(2831), 1, - anon_sym_in, - ACTIONS(2833), 1, - anon_sym_of, + [51575] = 3, + ACTIONS(3122), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2829), 3, - sym__automatic_semicolon, + ACTIONS(1530), 4, anon_sym_COMMA, - anon_sym_SEMI, - [47346] = 3, - ACTIONS(1456), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [51589] = 3, + ACTIONS(1599), 1, anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1458), 4, + ACTIONS(1601), 4, sym_jsx_text, anon_sym_LBRACE, sym_html_character_reference, anon_sym_LT_SLASH, - [47360] = 2, + [51603] = 3, + ACTIONS(3037), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1538), 5, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [47372] = 6, - ACTIONS(1586), 1, + ACTIONS(3035), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [51617] = 6, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(2835), 1, + ACTIONS(3125), 1, sym_identifier, - ACTIONS(2837), 1, + ACTIONS(3127), 1, anon_sym_LBRACK, - ACTIONS(2839), 1, + ACTIONS(3129), 1, sym_private_property_identifier, - STATE(723), 1, + STATE(784), 1, sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47392] = 3, - ACTIONS(2805), 1, + [51637] = 4, + ACTIONS(862), 1, + anon_sym_EQ, + STATE(1425), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2885), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [51653] = 3, + ACTIONS(1658), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2803), 4, + ACTIONS(1660), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, - [47406] = 3, - ACTIONS(2843), 1, - anon_sym_LT, + [51667] = 6, + ACTIONS(3131), 1, + sym_identifier, + ACTIONS(3133), 1, + anon_sym_GT, + ACTIONS(3135), 1, + sym_jsx_identifier, + STATE(1534), 1, + sym_nested_identifier, + STATE(1814), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2841), 4, - sym_jsx_text, - anon_sym_LBRACE, - sym_html_character_reference, - anon_sym_LT_SLASH, - [47420] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2845), 1, - anon_sym_SQUOTE, - STATE(1236), 1, - aux_sym_string_repeat2, - ACTIONS(2847), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [47437] = 5, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(2849), 1, + [51687] = 3, + ACTIONS(3025), 1, sym_identifier, - ACTIONS(2851), 1, - anon_sym_STAR, - STATE(1550), 1, - sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47454] = 4, - ACTIONS(2109), 1, - anon_sym_COLON, - ACTIONS(2111), 1, - anon_sym_EQ, + ACTIONS(3023), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [51701] = 6, + ACTIONS(3137), 1, + sym_identifier, + ACTIONS(3139), 1, + anon_sym_GT, + ACTIONS(3141), 1, + sym_jsx_identifier, + STATE(1512), 1, + sym_nested_identifier, + STATE(1861), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2853), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [47469] = 5, - ACTIONS(665), 1, - anon_sym_COMMA, - ACTIONS(2855), 1, - anon_sym_EQ, - ACTIONS(2857), 1, - anon_sym_RBRACK, - STATE(1356), 1, - aux_sym_array_pattern_repeat1, + [51721] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47486] = 5, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2859), 1, - anon_sym_class, - STATE(944), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, + ACTIONS(1753), 5, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [51733] = 3, + ACTIONS(3037), 1, + anon_sym_LT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47503] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2861), 1, - sym_html_character_reference, - ACTIONS(2863), 1, - anon_sym_DQUOTE, - ACTIONS(2865), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(1213), 1, - aux_sym__jsx_string_repeat1, - [47522] = 5, - ACTIONS(2867), 1, + ACTIONS(3035), 4, + sym_jsx_text, anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(341), 1, - sym_class_body, - STATE(1572), 1, - sym_class_heritage, + sym_html_character_reference, + anon_sym_LT_SLASH, + [51747] = 6, + ACTIONS(3011), 1, + anon_sym_GT, + ACTIONS(3143), 1, + sym_identifier, + ACTIONS(3145), 1, + sym_jsx_identifier, + STATE(1162), 1, + sym_nested_identifier, + STATE(1174), 1, + sym_jsx_namespace_name, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47539] = 5, - ACTIONS(665), 1, - anon_sym_COMMA, - ACTIONS(2855), 1, - anon_sym_EQ, - ACTIONS(2871), 1, - anon_sym_RBRACK, - STATE(1284), 1, - aux_sym_array_pattern_repeat1, + [51767] = 3, + ACTIONS(3074), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47556] = 5, - ACTIONS(2760), 1, + ACTIONS(3072), 4, anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(69), 1, - sym_class_body, - STATE(1427), 1, - sym_class_heritage, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [47573] = 6, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [51781] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2863), 1, - anon_sym_SQUOTE, - ACTIONS(2873), 1, + ACTIONS(3147), 1, sym_html_character_reference, - ACTIONS(2875), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(1218), 1, - aux_sym__jsx_string_repeat2, - [47592] = 5, - ACTIONS(2760), 1, - anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(646), 1, - sym_class_body, - STATE(1597), 1, - sym_class_heritage, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [47609] = 4, - ACTIONS(1717), 1, + ACTIONS(3150), 1, + anon_sym_DQUOTE, + ACTIONS(3152), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(1320), 1, + aux_sym__jsx_string_repeat1, + [51800] = 4, + ACTIONS(3155), 1, anon_sym_COMMA, - STATE(1242), 1, - aux_sym_sequence_expression_repeat1, + STATE(1335), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2590), 2, + ACTIONS(3157), 2, sym__automatic_semicolon, anon_sym_SEMI, - [47624] = 5, - ACTIONS(2647), 1, + [51815] = 5, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(3120), 1, + anon_sym_class, + STATE(1041), 1, + aux_sym_export_statement_repeat1, + STATE(1097), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51832] = 5, + ACTIONS(2939), 1, anon_sym_LPAREN, - ACTIONS(2877), 1, + ACTIONS(3159), 1, sym_identifier, - ACTIONS(2879), 1, + ACTIONS(3161), 1, anon_sym_STAR, - STATE(1537), 1, + STATE(1531), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47641] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2881), 1, - sym_html_character_reference, - ACTIONS(2883), 1, - anon_sym_DQUOTE, - ACTIONS(2885), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(1263), 1, - aux_sym__jsx_string_repeat1, - [47660] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2887), 1, - anon_sym_DQUOTE, - STATE(1244), 1, - aux_sym_string_repeat1, - ACTIONS(2889), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [47677] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1648), 4, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + [51849] = 3, + ACTIONS(3163), 1, anon_sym_EQ, - [47688] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1644), 4, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [47699] = 5, - ACTIONS(2760), 1, - anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(649), 1, - sym_class_body, - STATE(1611), 1, - sym_class_heritage, + ACTIONS(1543), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [51862] = 4, + ACTIONS(3155), 1, + anon_sym_COMMA, + STATE(1335), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47716] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2883), 1, - anon_sym_SQUOTE, - ACTIONS(2891), 1, - sym_html_character_reference, - ACTIONS(2893), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(1264), 1, - aux_sym__jsx_string_repeat2, - [47735] = 3, - ACTIONS(2895), 1, - anon_sym_EQ, + ACTIONS(3165), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51877] = 5, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(1822), 1, + anon_sym_DOT, + ACTIONS(3167), 1, + sym_optional_chain, + STATE(797), 1, + sym_arguments, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1309), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [47748] = 5, - ACTIONS(91), 1, + [51894] = 5, + ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2897), 1, + ACTIONS(3169), 1, anon_sym_class, - STATE(944), 1, + STATE(1041), 1, aux_sym_export_statement_repeat1, - STATE(1006), 1, + STATE(1097), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47765] = 4, - ACTIONS(2899), 1, - anon_sym_COMMA, - STATE(1221), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym_html_comment, + [51911] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [47780] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3171), 1, + anon_sym_DQUOTE, + STATE(1395), 1, + aux_sym_string_repeat1, + ACTIONS(3173), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [51928] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2887), 1, + ACTIONS(3171), 1, anon_sym_SQUOTE, - STATE(1252), 1, + STATE(1396), 1, aux_sym_string_repeat2, - ACTIONS(2902), 2, + ACTIONS(3175), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [47797] = 4, - ACTIONS(2904), 1, - anon_sym_with, - STATE(1401), 1, - sym_import_attribute, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2906), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [47812] = 5, + [51945] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2908), 1, - anon_sym_SQUOTE, - STATE(1222), 1, - aux_sym_string_repeat2, - ACTIONS(2910), 2, - sym_unescaped_single_string_fragment, + ACTIONS(3177), 1, + anon_sym_DQUOTE, + STATE(1350), 1, + aux_sym_string_repeat1, + ACTIONS(3179), 2, + sym_unescaped_double_string_fragment, sym_escape_sequence, - [47829] = 5, + [51962] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2912), 1, + ACTIONS(3177), 1, anon_sym_SQUOTE, - STATE(1252), 1, + STATE(1351), 1, aux_sym_string_repeat2, - ACTIONS(2902), 2, + ACTIONS(3181), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [47846] = 5, + [51979] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2914), 1, + ACTIONS(3183), 1, anon_sym_DQUOTE, - STATE(1249), 1, + STATE(1349), 1, aux_sym_string_repeat1, - ACTIONS(2916), 2, + ACTIONS(3185), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [47863] = 5, + [51996] = 5, + ACTIONS(1567), 1, + anon_sym_LPAREN, + ACTIONS(1571), 1, + anon_sym_DOT, + ACTIONS(3187), 1, + sym_optional_chain, + STATE(637), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52013] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2914), 1, + ACTIONS(3183), 1, anon_sym_SQUOTE, - STATE(1250), 1, + STATE(1352), 1, aux_sym_string_repeat2, - ACTIONS(2918), 2, + ACTIONS(3189), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [47880] = 5, - ACTIONS(2760), 1, - anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(71), 1, - sym_class_body, - STATE(1456), 1, - sym_class_heritage, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [47897] = 5, - ACTIONS(2724), 1, - anon_sym_LBRACE, - ACTIONS(2869), 1, - anon_sym_extends, - STATE(515), 1, - sym_class_body, - STATE(1450), 1, - sym_class_heritage, + [52030] = 4, + ACTIONS(3191), 1, + anon_sym_COMMA, + STATE(1335), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47914] = 5, - ACTIONS(2647), 1, + ACTIONS(3194), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52045] = 5, + ACTIONS(2939), 1, anon_sym_LPAREN, - ACTIONS(2920), 1, + ACTIONS(3196), 1, sym_identifier, - ACTIONS(2922), 1, + ACTIONS(3198), 1, anon_sym_STAR, - STATE(1565), 1, + STATE(1684), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47931] = 4, - ACTIONS(2924), 1, + [52062] = 4, + ACTIONS(3200), 1, + anon_sym_EQ, + STATE(1716), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2905), 2, + anon_sym_of, + anon_sym_in, + [52077] = 4, + ACTIONS(3200), 1, + anon_sym_EQ, + STATE(1729), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2887), 2, + anon_sym_of, + anon_sym_in, + [52092] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3202), 1, + anon_sym_DQUOTE, + STATE(1328), 1, + aux_sym_string_repeat1, + ACTIONS(3204), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [52109] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1916), 4, + anon_sym_of, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_EQ, + [52120] = 4, + ACTIONS(3155), 1, anon_sym_COMMA, - STATE(1231), 1, + STATE(1335), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2927), 2, + ACTIONS(3206), 2, sym__automatic_semicolon, anon_sym_SEMI, - [47946] = 5, - ACTIONS(1586), 1, + [52135] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2395), 4, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(1590), 1, - anon_sym_DOT, - ACTIONS(2929), 1, - sym_optional_chain, - STATE(651), 1, - sym_arguments, + anon_sym_SEMI, + anon_sym_EQ, + [52146] = 5, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(3029), 1, + anon_sym_class, + STATE(1041), 1, + aux_sym_export_statement_repeat1, + STATE(1097), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52163] = 4, + ACTIONS(3208), 1, + anon_sym_COMMA, + STATE(1344), 1, + aux_sym_sequence_expression_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47963] = 5, - ACTIONS(2724), 1, + ACTIONS(1836), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52178] = 5, + ACTIONS(3017), 1, anon_sym_LBRACE, - ACTIONS(2869), 1, + ACTIONS(3211), 1, anon_sym_extends, - STATE(518), 1, + STATE(755), 1, sym_class_body, - STATE(1425), 1, + STATE(1632), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47980] = 5, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(2931), 1, - sym_identifier, - ACTIONS(2933), 1, - anon_sym_STAR, - STATE(1434), 1, - sym_formal_parameters, + [52195] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1912), 4, + anon_sym_of, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_EQ, + [52206] = 5, + ACTIONS(873), 1, + anon_sym_COMMA, + ACTIONS(3213), 1, + anon_sym_EQ, + ACTIONS(3215), 1, + anon_sym_RBRACK, + STATE(1430), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [47997] = 5, + [52223] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3217), 1, + sym_html_character_reference, + ACTIONS(3220), 1, + anon_sym_SQUOTE, + ACTIONS(3222), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1348), 1, + aux_sym__jsx_string_repeat2, + [52242] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2935), 1, + ACTIONS(3225), 1, anon_sym_DQUOTE, - STATE(1244), 1, + STATE(1395), 1, aux_sym_string_repeat1, - ACTIONS(2889), 2, + ACTIONS(3173), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [48014] = 5, + [52259] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2935), 1, - anon_sym_SQUOTE, - STATE(1252), 1, - aux_sym_string_repeat2, - ACTIONS(2902), 2, - sym_unescaped_single_string_fragment, + ACTIONS(3227), 1, + anon_sym_DQUOTE, + STATE(1395), 1, + aux_sym_string_repeat1, + ACTIONS(3173), 2, + sym_unescaped_double_string_fragment, sym_escape_sequence, - [48031] = 5, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2780), 1, - anon_sym_class, - STATE(944), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [48048] = 3, - ACTIONS(5), 2, - sym_html_comment, + [52276] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2109), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2153), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [48061] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3227), 1, + anon_sym_SQUOTE, + STATE(1396), 1, + aux_sym_string_repeat2, + ACTIONS(3175), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [52293] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2937), 1, + ACTIONS(3225), 1, anon_sym_SQUOTE, - STATE(1225), 1, + STATE(1396), 1, aux_sym_string_repeat2, - ACTIONS(2939), 2, + ACTIONS(3175), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [48078] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2109), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [48089] = 5, - ACTIONS(2760), 1, + [52310] = 5, + ACTIONS(3017), 1, anon_sym_LBRACE, - ACTIONS(2869), 1, + ACTIONS(3211), 1, anon_sym_extends, - STATE(634), 1, + STATE(798), 1, sym_class_body, - STATE(1589), 1, + STATE(1530), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48106] = 4, - ACTIONS(2941), 1, + [52327] = 4, + ACTIONS(3229), 1, anon_sym_COMMA, - STATE(1242), 1, - aux_sym_sequence_expression_repeat1, + STATE(1354), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1602), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48121] = 5, - ACTIONS(2855), 1, - anon_sym_EQ, - ACTIONS(2944), 1, - anon_sym_COMMA, - ACTIONS(2946), 1, + ACTIONS(2017), 2, anon_sym_RPAREN, - STATE(1276), 1, - aux_sym_formal_parameters_repeat1, - ACTIONS(5), 2, - sym_html_comment, + anon_sym_RBRACK, + [52342] = 6, + ACTIONS(3), 1, sym_comment, - [48138] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3232), 1, + sym_html_character_reference, + ACTIONS(3234), 1, + anon_sym_SQUOTE, + ACTIONS(3236), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1348), 1, + aux_sym__jsx_string_repeat2, + [52361] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2948), 1, + ACTIONS(3238), 1, + sym_html_character_reference, + ACTIONS(3240), 1, anon_sym_DQUOTE, - STATE(1244), 1, - aux_sym_string_repeat1, - ACTIONS(2950), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [48155] = 5, + ACTIONS(3242), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(1384), 1, + aux_sym__jsx_string_repeat1, + [52380] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2937), 1, + ACTIONS(3244), 1, anon_sym_DQUOTE, - STATE(1269), 1, + STATE(1361), 1, aux_sym_string_repeat1, - ACTIONS(2953), 2, + ACTIONS(3246), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [48172] = 5, - ACTIONS(2760), 1, + [52397] = 4, + ACTIONS(3248), 1, + anon_sym_from, + STATE(1666), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3250), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52412] = 4, + ACTIONS(3252), 1, + anon_sym_with, + STATE(1731), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3254), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52427] = 5, + ACTIONS(3070), 1, anon_sym_LBRACE, - ACTIONS(2869), 1, + ACTIONS(3211), 1, anon_sym_extends, - STATE(661), 1, + STATE(619), 1, sym_class_body, - STATE(1564), 1, + STATE(1566), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48189] = 5, + [52444] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2908), 1, + ACTIONS(3256), 1, anon_sym_DQUOTE, - STATE(1214), 1, + STATE(1395), 1, aux_sym_string_repeat1, - ACTIONS(2955), 2, + ACTIONS(3173), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [48206] = 4, - ACTIONS(2957), 1, - anon_sym_COMMA, - STATE(1231), 1, - aux_sym_variable_declaration_repeat1, + [52461] = 5, + ACTIONS(3017), 1, + anon_sym_LBRACE, + ACTIONS(3211), 1, + anon_sym_extends, + STATE(100), 1, + sym_class_body, + STATE(1537), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2959), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48221] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2961), 1, - anon_sym_DQUOTE, - STATE(1244), 1, - aux_sym_string_repeat1, - ACTIONS(2889), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [48238] = 5, + [52478] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2961), 1, + ACTIONS(3256), 1, anon_sym_SQUOTE, - STATE(1252), 1, + STATE(1396), 1, aux_sym_string_repeat2, - ACTIONS(2902), 2, + ACTIONS(3175), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [48255] = 4, - ACTIONS(2963), 1, - anon_sym_EQ, - STATE(1388), 1, - sym__initializer, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(2602), 2, - anon_sym_in, - anon_sym_of, - [48270] = 5, + [52495] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2965), 1, + ACTIONS(3202), 1, anon_sym_SQUOTE, - STATE(1252), 1, + STATE(1329), 1, aux_sym_string_repeat2, - ACTIONS(2967), 2, + ACTIONS(3258), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [48287] = 5, - ACTIONS(91), 1, - anon_sym_AT, - ACTIONS(2970), 1, - anon_sym_class, - STATE(944), 1, - aux_sym_export_statement_repeat1, - STATE(1006), 1, - sym_decorator, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [48304] = 5, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(2972), 1, - sym_identifier, - ACTIONS(2974), 1, - anon_sym_STAR, - STATE(1550), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [48321] = 4, - ACTIONS(2957), 1, + [52512] = 4, + ACTIONS(3155), 1, anon_sym_COMMA, - STATE(1268), 1, + STATE(1335), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2976), 2, + ACTIONS(3260), 2, sym__automatic_semicolon, anon_sym_SEMI, - [48336] = 2, + [52527] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1646), 4, + ACTIONS(1914), 4, + anon_sym_of, anon_sym_RPAREN, anon_sym_in, - anon_sym_of, anon_sym_EQ, - [48347] = 4, - ACTIONS(2451), 1, - anon_sym_STAR, - ACTIONS(2453), 1, + [52538] = 5, + ACTIONS(3017), 1, anon_sym_LBRACE, + ACTIONS(3211), 1, + anon_sym_extends, + STATE(97), 1, + sym_class_body, + STATE(1645), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - STATE(1643), 2, - sym_namespace_import, - sym_named_imports, - [48362] = 5, - ACTIONS(2867), 1, + [52555] = 5, + ACTIONS(3017), 1, anon_sym_LBRACE, - ACTIONS(2869), 1, + ACTIONS(3211), 1, anon_sym_extends, - STATE(354), 1, + STATE(799), 1, sym_class_body, - STATE(1546), 1, + STATE(1607), 1, sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48379] = 5, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(2978), 1, - sym_identifier, - ACTIONS(2980), 1, - anon_sym_STAR, - STATE(1434), 1, - sym_formal_parameters, + [52572] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3244), 1, + anon_sym_SQUOTE, + STATE(1363), 1, + aux_sym_string_repeat2, + ACTIONS(3262), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [52589] = 5, + ACTIONS(3213), 1, + anon_sym_EQ, + ACTIONS(3264), 1, + anon_sym_COMMA, + ACTIONS(3266), 1, + anon_sym_RPAREN, + STATE(1486), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48396] = 4, - ACTIONS(2957), 1, - anon_sym_COMMA, - STATE(1248), 1, - aux_sym_variable_declaration_repeat1, + [52606] = 4, + ACTIONS(2739), 1, + anon_sym_STAR, + ACTIONS(2741), 1, + anon_sym_LBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2982), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48411] = 5, - ACTIONS(2904), 1, + STATE(1833), 2, + sym_namespace_import, + sym_named_imports, + [52621] = 5, + ACTIONS(3252), 1, anon_sym_with, - ACTIONS(2984), 1, + ACTIONS(3268), 1, anon_sym_SEMI, - ACTIONS(2986), 1, + ACTIONS(3270), 1, sym__automatic_semicolon, - STATE(1528), 1, + STATE(1674), 1, sym_import_attribute, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48428] = 5, - ACTIONS(2647), 1, + [52638] = 5, + ACTIONS(3070), 1, + anon_sym_LBRACE, + ACTIONS(3211), 1, + anon_sym_extends, + STATE(650), 1, + sym_class_body, + STATE(1624), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52655] = 5, + ACTIONS(2939), 1, anon_sym_LPAREN, - ACTIONS(2988), 1, + ACTIONS(3272), 1, sym_identifier, - ACTIONS(2990), 1, + ACTIONS(3274), 1, anon_sym_STAR, - STATE(1550), 1, + STATE(1684), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48445] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2992), 1, - sym_html_character_reference, - ACTIONS(2995), 1, - anon_sym_DQUOTE, - ACTIONS(2997), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(1263), 1, - aux_sym__jsx_string_repeat1, - [48464] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3000), 1, - sym_html_character_reference, - ACTIONS(3003), 1, - anon_sym_SQUOTE, - ACTIONS(3005), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(1264), 1, - aux_sym__jsx_string_repeat2, - [48483] = 2, + [52672] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3008), 4, + ACTIONS(3276), 4, sym__template_chars, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR_LBRACE, - [48494] = 5, - ACTIONS(3), 1, + [52683] = 5, + ACTIONS(2939), 1, + anon_sym_LPAREN, + ACTIONS(3278), 1, + sym_identifier, + ACTIONS(3280), 1, + anon_sym_STAR, + STATE(1684), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [52700] = 5, + ACTIONS(3211), 1, + anon_sym_extends, + ACTIONS(3282), 1, + anon_sym_LBRACE, + STATE(405), 1, + sym_class_body, + STATE(1676), 1, + sym_class_heritage, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(2845), 1, - anon_sym_DQUOTE, - STATE(1235), 1, - aux_sym_string_repeat1, - ACTIONS(3010), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [48511] = 5, - ACTIONS(2647), 1, + sym_comment, + [52717] = 5, + ACTIONS(2939), 1, anon_sym_LPAREN, - ACTIONS(3012), 1, + ACTIONS(3284), 1, sym_identifier, - ACTIONS(3014), 1, + ACTIONS(3286), 1, anon_sym_STAR, - STATE(1434), 1, + STATE(1665), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48528] = 4, - ACTIONS(2957), 1, + [52734] = 4, + ACTIONS(1942), 1, + anon_sym_COMMA, + STATE(1344), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2927), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52749] = 4, + ACTIONS(3155), 1, anon_sym_COMMA, - STATE(1231), 1, + STATE(1325), 1, aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3016), 2, + ACTIONS(3288), 2, sym__automatic_semicolon, anon_sym_SEMI, - [48543] = 5, + [52764] = 5, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(3290), 1, + anon_sym_class, + STATE(1041), 1, + aux_sym_export_statement_repeat1, + STATE(1097), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52781] = 5, + ACTIONS(873), 1, + anon_sym_COMMA, + ACTIONS(3213), 1, + anon_sym_EQ, + ACTIONS(3292), 1, + anon_sym_RBRACK, + STATE(1451), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52798] = 5, + ACTIONS(3211), 1, + anon_sym_extends, + ACTIONS(3282), 1, + anon_sym_LBRACE, + STATE(413), 1, + sym_class_body, + STATE(1547), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52815] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2912), 1, + ACTIONS(3234), 1, anon_sym_DQUOTE, - STATE(1244), 1, - aux_sym_string_repeat1, - ACTIONS(2889), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [48560] = 2, + ACTIONS(3294), 1, + sym_html_character_reference, + ACTIONS(3296), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(1320), 1, + aux_sym__jsx_string_repeat1, + [52834] = 4, + ACTIONS(3155), 1, + anon_sym_COMMA, + STATE(1365), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1731), 4, + ACTIONS(3298), 2, sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_EQ, - [48571] = 4, - ACTIONS(3018), 1, - anon_sym_from, - STATE(1402), 1, - sym__from_clause, + [52849] = 5, + ACTIONS(2939), 1, + anon_sym_LPAREN, + ACTIONS(3300), 1, + sym_identifier, + ACTIONS(3302), 1, + anon_sym_STAR, + STATE(1665), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3020), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48586] = 5, - ACTIONS(1333), 1, + [52866] = 5, + ACTIONS(2939), 1, anon_sym_LPAREN, - ACTIONS(1337), 1, - anon_sym_DOT, - ACTIONS(3022), 1, - sym_optional_chain, - STATE(528), 1, - sym_arguments, + ACTIONS(3304), 1, + sym_identifier, + ACTIONS(3306), 1, + anon_sym_STAR, + STATE(1746), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48603] = 5, - ACTIONS(91), 1, + [52883] = 5, + ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2730), 1, + ACTIONS(3308), 1, anon_sym_class, - STATE(944), 1, + STATE(1041), 1, aux_sym_export_statement_repeat1, - STATE(1006), 1, + STATE(1097), 1, sym_decorator, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48620] = 4, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(3024), 1, - sym_identifier, - STATE(1437), 1, - sym_formal_parameters, + [52900] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48634] = 4, - ACTIONS(2647), 1, + ACTIONS(1937), 4, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(3026), 1, - sym_identifier, - STATE(1567), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [48648] = 4, - ACTIONS(704), 1, - anon_sym_RPAREN, - ACTIONS(3028), 1, + anon_sym_SEMI, + anon_sym_EQ, + [52911] = 4, + ACTIONS(3155), 1, anon_sym_COMMA, - STATE(1307), 1, - aux_sym_formal_parameters_repeat1, + STATE(1341), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48662] = 4, - ACTIONS(2944), 1, + ACTIONS(3310), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52926] = 4, + ACTIONS(3155), 1, anon_sym_COMMA, - ACTIONS(2946), 1, - anon_sym_RPAREN, - STATE(1276), 1, - aux_sym_formal_parameters_repeat1, + STATE(1321), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48676] = 4, - ACTIONS(3030), 1, + ACTIONS(3312), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52941] = 5, + ACTIONS(3017), 1, anon_sym_LBRACE, - ACTIONS(3032), 1, - anon_sym_LPAREN, - STATE(342), 1, - sym_statement_block, + ACTIONS(3211), 1, + anon_sym_extends, + STATE(766), 1, + sym_class_body, + STATE(1696), 1, + sym_class_heritage, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48690] = 2, + [52958] = 5, + ACTIONS(2939), 1, + anon_sym_LPAREN, + ACTIONS(3314), 1, + sym_identifier, + ACTIONS(3316), 1, + anon_sym_STAR, + STATE(1665), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1815), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [48700] = 3, - ACTIONS(2855), 1, + [52975] = 4, + ACTIONS(2395), 1, + anon_sym_COLON, + ACTIONS(2397), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3034), 2, + ACTIONS(3318), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [48712] = 4, - ACTIONS(2087), 1, - anon_sym_COMMA, - ACTIONS(3036), 1, anon_sym_RBRACE, - STATE(1324), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(5), 2, + [52990] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, sym_html_comment, + ACTIONS(3320), 1, + anon_sym_DQUOTE, + STATE(1395), 1, + aux_sym_string_repeat1, + ACTIONS(3322), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [53007] = 5, + ACTIONS(3), 1, sym_comment, - [48726] = 3, - ACTIONS(2855), 1, - anon_sym_EQ, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3325), 1, + anon_sym_SQUOTE, + STATE(1396), 1, + aux_sym_string_repeat2, + ACTIONS(3327), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [53024] = 3, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3038), 2, + ACTIONS(2395), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2455), 2, anon_sym_COMMA, anon_sym_RBRACE, - [48738] = 4, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(3040), 1, - anon_sym_RBRACK, - STATE(1221), 1, - aux_sym_array_repeat1, + [53037] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3240), 1, + anon_sym_SQUOTE, + ACTIONS(3330), 1, + sym_html_character_reference, + ACTIONS(3332), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1355), 1, + aux_sym__jsx_string_repeat2, + [53056] = 4, + ACTIONS(2939), 1, + anon_sym_LPAREN, + ACTIONS(3334), 1, + sym_identifier, + STATE(1573), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48752] = 4, - ACTIONS(665), 1, - anon_sym_COMMA, - ACTIONS(3042), 1, - anon_sym_RBRACK, - STATE(1288), 1, - aux_sym_array_pattern_repeat1, + [53070] = 4, + ACTIONS(2939), 1, + anon_sym_LPAREN, + ACTIONS(3336), 1, + sym_identifier, + STATE(1532), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48766] = 4, - ACTIONS(2647), 1, + [53084] = 4, + ACTIONS(2939), 1, anon_sym_LPAREN, - ACTIONS(3044), 1, + ACTIONS(3338), 1, sym_identifier, - STATE(1592), 1, + STATE(1501), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48780] = 4, - ACTIONS(3046), 1, + [53098] = 4, + ACTIONS(2273), 1, anon_sym_COMMA, - ACTIONS(3049), 1, + ACTIONS(3340), 1, anon_sym_RBRACE, - STATE(1286), 1, - aux_sym_named_imports_repeat1, + STATE(1467), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48794] = 4, - ACTIONS(2011), 1, - anon_sym_DQUOTE, - ACTIONS(2013), 1, - anon_sym_SQUOTE, - STATE(1359), 1, - sym_string, + [53112] = 4, + ACTIONS(1162), 1, + anon_sym_while, + ACTIONS(3342), 1, + anon_sym_else, + STATE(428), 1, + sym_else_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48808] = 4, - ACTIONS(3034), 1, - anon_sym_RBRACK, - ACTIONS(3051), 1, + [53126] = 3, + ACTIONS(2745), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2743), 2, + anon_sym_LPAREN, + sym_optional_chain, + [53138] = 4, + ACTIONS(910), 1, anon_sym_COMMA, - STATE(1288), 1, - aux_sym_array_pattern_repeat1, + ACTIONS(2065), 1, + anon_sym_RPAREN, + STATE(1436), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48822] = 4, - ACTIONS(1987), 1, + [53152] = 4, + ACTIONS(2273), 1, anon_sym_COMMA, - ACTIONS(3054), 1, + ACTIONS(3344), 1, anon_sym_RBRACE, - STATE(1336), 1, + STATE(1441), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48836] = 4, - ACTIONS(2647), 1, + [53166] = 4, + ACTIONS(2939), 1, anon_sym_LPAREN, - ACTIONS(3056), 1, + ACTIONS(3346), 1, anon_sym_COLON, - STATE(1521), 1, + STATE(1644), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48850] = 4, - ACTIONS(1987), 1, - anon_sym_COMMA, - ACTIONS(3058), 1, - anon_sym_RBRACE, - STATE(1297), 1, - aux_sym_object_repeat1, + [53180] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48864] = 4, - ACTIONS(1987), 1, + ACTIONS(3054), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(3058), 1, - anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + anon_sym_SEMI, + [53190] = 4, + ACTIONS(873), 1, + anon_sym_COMMA, + ACTIONS(3292), 1, + anon_sym_RBRACK, + STATE(1433), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48878] = 2, + [53204] = 3, + ACTIONS(3213), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3060), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [48888] = 3, - ACTIONS(3062), 1, - anon_sym_as, + ACTIONS(3348), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [53216] = 4, + ACTIONS(3090), 1, + sym_identifier, + ACTIONS(3092), 1, + anon_sym_LBRACK, + ACTIONS(3094), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3064), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [48900] = 4, - ACTIONS(3066), 1, - anon_sym_COMMA, - ACTIONS(3068), 1, - anon_sym_RBRACE, - STATE(1361), 1, - aux_sym_export_clause_repeat1, + [53230] = 4, + ACTIONS(3350), 1, + anon_sym_LBRACE, + ACTIONS(3352), 1, + anon_sym_LPAREN, + STATE(401), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48914] = 4, - ACTIONS(1987), 1, + [53244] = 4, + ACTIONS(873), 1, anon_sym_COMMA, - ACTIONS(3070), 1, - anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + ACTIONS(3292), 1, + anon_sym_RBRACK, + STATE(1451), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48928] = 4, - ACTIONS(1987), 1, + [53258] = 4, + ACTIONS(3354), 1, anon_sym_COMMA, - ACTIONS(3072), 1, + ACTIONS(3356), 1, anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + STATE(1463), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48942] = 3, - ACTIONS(2855), 1, - anon_sym_EQ, + [53272] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3074), 2, + ACTIONS(3194), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - [48954] = 4, - ACTIONS(3076), 1, + anon_sym_SEMI, + [53282] = 4, + ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(3078), 1, + ACTIONS(3358), 1, anon_sym_RBRACE, - STATE(1321), 1, - aux_sym_named_imports_repeat1, + STATE(1421), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48968] = 3, - ACTIONS(3080), 1, - anon_sym_as, + [53296] = 4, + ACTIONS(3360), 1, + anon_sym_COMMA, + ACTIONS(3363), 1, + anon_sym_RBRACE, + STATE(1417), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3082), 2, + [53310] = 4, + ACTIONS(2273), 1, anon_sym_COMMA, + ACTIONS(3365), 1, anon_sym_RBRACE, - [48980] = 4, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(3084), 1, - anon_sym_COLON, - STATE(1521), 1, - sym_formal_parameters, + STATE(1417), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [48994] = 3, - ACTIONS(3086), 1, - sym_identifier, + [53324] = 4, + ACTIONS(2357), 1, + anon_sym_COMMA, + ACTIONS(3367), 1, + anon_sym_RBRACE, + STATE(1421), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3088), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [49006] = 4, - ACTIONS(698), 1, + [53338] = 4, + ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(1745), 1, - anon_sym_RPAREN, - STATE(1306), 1, - aux_sym_array_repeat1, + ACTIONS(3369), 1, + anon_sym_RBRACE, + STATE(1421), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49020] = 4, - ACTIONS(698), 1, + [53352] = 4, + ACTIONS(3371), 1, anon_sym_COMMA, - ACTIONS(1745), 1, - anon_sym_RPAREN, - STATE(1221), 1, - aux_sym_array_repeat1, + ACTIONS(3374), 1, + anon_sym_RBRACE, + STATE(1421), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49034] = 4, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(3090), 1, - anon_sym_GT, + [53366] = 4, + ACTIONS(2273), 1, + anon_sym_COMMA, + ACTIONS(3376), 1, + anon_sym_RBRACE, + STATE(1417), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49048] = 4, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(3092), 1, - anon_sym_RPAREN, - STATE(1221), 1, - aux_sym_array_repeat1, + [53380] = 3, + ACTIONS(3378), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49062] = 4, - ACTIONS(3074), 1, - anon_sym_RPAREN, - ACTIONS(3094), 1, + ACTIONS(3380), 2, anon_sym_COMMA, - STATE(1307), 1, - aux_sym_formal_parameters_repeat1, + anon_sym_RBRACE, + [53392] = 4, + ACTIONS(2751), 1, + anon_sym_COLON, + ACTIONS(2757), 1, + anon_sym_DOT, + ACTIONS(3382), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49076] = 2, + [53406] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2927), 3, + ACTIONS(3062), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [49086] = 4, - ACTIONS(1987), 1, + [53416] = 4, + ACTIONS(3264), 1, anon_sym_COMMA, - ACTIONS(3054), 1, - anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + ACTIONS(3266), 1, + anon_sym_RPAREN, + STATE(1486), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49100] = 4, - ACTIONS(1987), 1, - anon_sym_COMMA, - ACTIONS(3097), 1, - anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + [53430] = 4, + ACTIONS(2297), 1, + anon_sym_DQUOTE, + ACTIONS(2299), 1, + anon_sym_SQUOTE, + STATE(1439), 1, + sym_string, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49114] = 4, - ACTIONS(2087), 1, - anon_sym_COMMA, - ACTIONS(3099), 1, - anon_sym_RBRACE, - STATE(1368), 1, - aux_sym_object_pattern_repeat1, + [53444] = 4, + ACTIONS(2751), 1, + anon_sym_COLON, + ACTIONS(2757), 1, + anon_sym_DOT, + ACTIONS(3384), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49128] = 4, - ACTIONS(2087), 1, + [53458] = 4, + ACTIONS(910), 1, anon_sym_COMMA, - ACTIONS(3036), 1, - anon_sym_RBRACE, - STATE(1368), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(3386), 1, + anon_sym_RBRACK, + STATE(1354), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49142] = 3, - ACTIONS(3101), 1, - sym__automatic_semicolon, + [53472] = 4, + ACTIONS(873), 1, + anon_sym_COMMA, + ACTIONS(3388), 1, + anon_sym_RBRACK, + STATE(1433), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2602), 2, + [53486] = 3, + ACTIONS(1902), 1, anon_sym_in, - anon_sym_of, - [49154] = 4, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(3103), 1, - anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49168] = 4, - ACTIONS(3105), 1, + ACTIONS(1932), 2, anon_sym_LPAREN, - ACTIONS(3107), 1, - anon_sym_await, - STATE(33), 1, - sym__for_header, + anon_sym_COLON, + [53498] = 4, + ACTIONS(910), 1, + anon_sym_COMMA, + ACTIONS(2021), 1, + anon_sym_RPAREN, + STATE(1354), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49182] = 4, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(3109), 1, - sym_identifier, - STATE(1375), 1, - sym_formal_parameters, + [53512] = 4, + ACTIONS(3348), 1, + anon_sym_RBRACK, + ACTIONS(3390), 1, + anon_sym_COMMA, + STATE(1433), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49196] = 4, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(3111), 1, - anon_sym_RPAREN, - STATE(1221), 1, - aux_sym_array_repeat1, + [53526] = 3, + ACTIONS(3213), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49210] = 2, + ACTIONS(3393), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [53538] = 4, + ACTIONS(2879), 1, + anon_sym_RBRACE, + ACTIONS(3395), 1, + anon_sym_COMMA, + STATE(1477), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2829), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [49220] = 4, - ACTIONS(698), 1, + [53552] = 4, + ACTIONS(910), 1, anon_sym_COMMA, - ACTIONS(1743), 1, + ACTIONS(3397), 1, anon_sym_RPAREN, - STATE(1317), 1, + STATE(1354), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49234] = 4, - ACTIONS(698), 1, + [53566] = 4, + ACTIONS(910), 1, anon_sym_COMMA, - ACTIONS(1743), 1, + ACTIONS(2041), 1, anon_sym_RPAREN, - STATE(1221), 1, + STATE(1455), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49248] = 4, - ACTIONS(2592), 1, - anon_sym_RBRACE, - ACTIONS(3113), 1, + [53580] = 4, + ACTIONS(910), 1, anon_sym_COMMA, - STATE(1286), 1, - aux_sym_named_imports_repeat1, + ACTIONS(2041), 1, + anon_sym_RPAREN, + STATE(1354), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49262] = 4, - ACTIONS(2835), 1, - sym_identifier, - ACTIONS(2837), 1, - anon_sym_LBRACK, - ACTIONS(2839), 1, - sym_private_property_identifier, + [53594] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49276] = 4, - ACTIONS(968), 1, - anon_sym_while, - ACTIONS(3115), 1, - anon_sym_else, - STATE(404), 1, - sym_else_clause, + ACTIONS(3399), 3, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_SEMI, + [53604] = 4, + ACTIONS(3401), 1, + anon_sym_await, + ACTIONS(3403), 1, + anon_sym_LPAREN, + STATE(55), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49290] = 4, - ACTIONS(2087), 1, + [53618] = 4, + ACTIONS(2273), 1, anon_sym_COMMA, - ACTIONS(3117), 1, + ACTIONS(3405), 1, anon_sym_RBRACE, - STATE(1368), 1, - aux_sym_object_pattern_repeat1, + STATE(1417), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49304] = 3, - ACTIONS(2766), 1, - anon_sym_EQ, + [53632] = 3, + ACTIONS(3407), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1321), 2, - anon_sym_in, - anon_sym_of, - [49316] = 4, - ACTIONS(698), 1, + ACTIONS(3409), 2, anon_sym_COMMA, - ACTIONS(1841), 1, - anon_sym_RBRACK, - STATE(1283), 1, - aux_sym_array_repeat1, + anon_sym_RBRACE, + [53644] = 4, + ACTIONS(3411), 1, + anon_sym_COMMA, + ACTIONS(3413), 1, + anon_sym_RBRACE, + STATE(1435), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49330] = 2, + [53658] = 4, + ACTIONS(2751), 1, + anon_sym_COLON, + ACTIONS(2757), 1, + anon_sym_DOT, + ACTIONS(3415), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3119), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [49340] = 4, - ACTIONS(698), 1, + [53672] = 4, + ACTIONS(910), 1, anon_sym_COMMA, - ACTIONS(1841), 1, - anon_sym_RBRACK, - STATE(1221), 1, + ACTIONS(2065), 1, + anon_sym_RPAREN, + STATE(1354), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49354] = 3, - ACTIONS(3121), 1, + [53686] = 3, + ACTIONS(3417), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3123), 2, + ACTIONS(3419), 2, sym__automatic_semicolon, anon_sym_SEMI, - [49366] = 4, - ACTIONS(3125), 1, - anon_sym_COMMA, - ACTIONS(3128), 1, - anon_sym_RBRACE, - STATE(1330), 1, - aux_sym_export_clause_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [49380] = 2, + [53698] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3130), 3, + ACTIONS(3421), 3, sym__automatic_semicolon, anon_sym_from, anon_sym_SEMI, - [49390] = 4, - ACTIONS(2087), 1, - anon_sym_COMMA, - ACTIONS(3132), 1, - anon_sym_RBRACE, - STATE(1353), 1, - aux_sym_object_pattern_repeat1, + [53708] = 4, + ACTIONS(2939), 1, + anon_sym_LPAREN, + ACTIONS(3423), 1, + anon_sym_COLON, + STATE(1644), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49404] = 4, - ACTIONS(1987), 1, + [53722] = 4, + ACTIONS(2273), 1, anon_sym_COMMA, - ACTIONS(3134), 1, + ACTIONS(3340), 1, anon_sym_RBRACE, - STATE(1354), 1, + STATE(1417), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49418] = 4, - ACTIONS(1987), 1, + [53736] = 4, + ACTIONS(910), 1, anon_sym_COMMA, - ACTIONS(3134), 1, - anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + ACTIONS(2009), 1, + anon_sym_RBRACK, + STATE(1354), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49432] = 4, - ACTIONS(2087), 1, + [53750] = 4, + ACTIONS(873), 1, anon_sym_COMMA, - ACTIONS(3132), 1, - anon_sym_RBRACE, - STATE(1368), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(3425), 1, + anon_sym_RBRACK, + STATE(1433), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49446] = 4, - ACTIONS(1987), 1, + [53764] = 4, + ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(3136), 1, + ACTIONS(3427), 1, anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + STATE(1421), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49460] = 3, - ACTIONS(3138), 1, - anon_sym_DOT, + [53778] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2455), 2, - anon_sym_LPAREN, - sym_optional_chain, - [49472] = 4, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(3140), 1, - sym_identifier, - STATE(1375), 1, - sym_formal_parameters, + ACTIONS(3429), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [53788] = 4, + ACTIONS(2357), 1, + anon_sym_COMMA, + ACTIONS(3431), 1, + anon_sym_RBRACE, + STATE(1416), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49486] = 4, - ACTIONS(3142), 1, - sym_identifier, - STATE(917), 1, - sym_decorator_member_expression, - STATE(1002), 1, - sym_decorator_call_expression, + [53802] = 4, + ACTIONS(910), 1, + anon_sym_COMMA, + ACTIONS(3433), 1, + anon_sym_RPAREN, + STATE(1354), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49500] = 3, - ACTIONS(2457), 1, - anon_sym_DOT, + [53816] = 3, + ACTIONS(3435), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(2455), 2, - anon_sym_LPAREN, - sym_optional_chain, - [49512] = 4, - ACTIONS(665), 1, + ACTIONS(3437), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53828] = 4, + ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(2871), 1, - anon_sym_RBRACK, - STATE(1288), 1, - aux_sym_array_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [49526] = 3, - ACTIONS(2895), 1, - anon_sym_EQ, + ACTIONS(3439), 1, + anon_sym_RBRACE, + STATE(1420), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1321), 2, - anon_sym_in, - anon_sym_of, - [49538] = 4, - ACTIONS(665), 1, + [53842] = 4, + ACTIONS(2273), 1, anon_sym_COMMA, - ACTIONS(2857), 1, - anon_sym_RBRACK, - STATE(1356), 1, - aux_sym_array_pattern_repeat1, + ACTIONS(3441), 1, + anon_sym_RBRACE, + STATE(1422), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49552] = 4, - ACTIONS(698), 1, + [53856] = 4, + ACTIONS(3443), 1, anon_sym_COMMA, - ACTIONS(1791), 1, - anon_sym_RBRACK, - STATE(1355), 1, - aux_sym_array_repeat1, + ACTIONS(3446), 1, + anon_sym_RBRACE, + STATE(1459), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49566] = 4, - ACTIONS(698), 1, + [53870] = 4, + ACTIONS(910), 1, anon_sym_COMMA, - ACTIONS(1791), 1, + ACTIONS(2009), 1, anon_sym_RBRACK, - STATE(1221), 1, + STATE(1483), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49580] = 4, - ACTIONS(665), 1, + [53884] = 4, + ACTIONS(2273), 1, anon_sym_COMMA, - ACTIONS(2857), 1, - anon_sym_RBRACK, - STATE(1288), 1, - aux_sym_array_pattern_repeat1, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [49594] = 4, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(3144), 1, - anon_sym_GT, + ACTIONS(3441), 1, + anon_sym_RBRACE, + STATE(1417), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49608] = 4, - ACTIONS(2647), 1, + [53898] = 4, + ACTIONS(2939), 1, anon_sym_LPAREN, - ACTIONS(3146), 1, + ACTIONS(3448), 1, sym_identifier, - STATE(1437), 1, + STATE(1671), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49622] = 4, - ACTIONS(2792), 1, - sym_identifier, - ACTIONS(2794), 1, - anon_sym_LBRACK, - ACTIONS(2796), 1, - sym_private_property_identifier, + [53912] = 4, + ACTIONS(2875), 1, + anon_sym_RBRACE, + ACTIONS(3450), 1, + anon_sym_COMMA, + STATE(1459), 1, + aux_sym_export_clause_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49636] = 4, - ACTIONS(1987), 1, + [53926] = 4, + ACTIONS(2273), 1, anon_sym_COMMA, - ACTIONS(3148), 1, + ACTIONS(3452), 1, anon_sym_RBRACE, - STATE(1366), 1, + STATE(1417), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49650] = 4, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(3150), 1, - sym_identifier, - STATE(1375), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [49664] = 4, - ACTIONS(2087), 1, + [53940] = 4, + ACTIONS(910), 1, anon_sym_COMMA, - ACTIONS(3152), 1, - anon_sym_RBRACE, - STATE(1368), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(3454), 1, + anon_sym_RPAREN, + STATE(1354), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49678] = 4, - ACTIONS(2087), 1, + [53954] = 4, + ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(3154), 1, + ACTIONS(3439), 1, anon_sym_RBRACE, - STATE(1368), 1, + STATE(1421), 1, aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49692] = 4, - ACTIONS(1987), 1, + [53968] = 4, + ACTIONS(2273), 1, anon_sym_COMMA, - ACTIONS(3156), 1, + ACTIONS(3456), 1, anon_sym_RBRACE, - STATE(1366), 1, + STATE(1417), 1, aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49706] = 4, - ACTIONS(698), 1, - anon_sym_COMMA, - ACTIONS(3158), 1, - anon_sym_RBRACK, - STATE(1221), 1, - aux_sym_array_repeat1, + [53982] = 3, + ACTIONS(953), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49720] = 4, - ACTIONS(665), 1, - anon_sym_COMMA, - ACTIONS(3160), 1, - anon_sym_RBRACK, - STATE(1288), 1, - aux_sym_array_pattern_repeat1, + ACTIONS(2905), 2, + anon_sym_of, + anon_sym_in, + [53994] = 3, + ACTIONS(3458), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49734] = 3, - ACTIONS(1632), 1, + ACTIONS(2887), 2, + anon_sym_of, anon_sym_in, + [54006] = 4, + ACTIONS(3460), 1, + sym_identifier, + STATE(1034), 1, + sym_decorator_member_expression, + STATE(1094), 1, + sym_decorator_call_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1715), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [49746] = 4, - ACTIONS(3162), 1, + [54020] = 4, + ACTIONS(2939), 1, anon_sym_LPAREN, - ACTIONS(3164), 1, - anon_sym_await, - STATE(27), 1, - sym__for_header, + ACTIONS(3462), 1, + sym_identifier, + STATE(1501), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49760] = 2, + [54034] = 3, + ACTIONS(2999), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3166), 3, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_SEMI, - [49770] = 2, + ACTIONS(1550), 2, + anon_sym_of, + anon_sym_in, + [54046] = 4, + ACTIONS(2939), 1, + anon_sym_LPAREN, + ACTIONS(3464), 1, + sym_identifier, + STATE(1501), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3168), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [49780] = 4, - ACTIONS(2614), 1, - anon_sym_RBRACE, - ACTIONS(3170), 1, - anon_sym_COMMA, - STATE(1330), 1, - aux_sym_export_clause_repeat1, + [54060] = 3, + ACTIONS(3213), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49794] = 4, - ACTIONS(698), 1, + ACTIONS(3466), 2, anon_sym_COMMA, - ACTIONS(1795), 1, anon_sym_RPAREN, - STATE(1367), 1, - aux_sym_array_repeat1, + [54072] = 4, + ACTIONS(3466), 1, + anon_sym_RPAREN, + ACTIONS(3468), 1, + anon_sym_COMMA, + STATE(1475), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49808] = 4, - ACTIONS(3018), 1, - anon_sym_from, - ACTIONS(3172), 1, - anon_sym_as, - STATE(1543), 1, - sym__from_clause, + [54086] = 4, + ACTIONS(2357), 1, + anon_sym_COMMA, + ACTIONS(3431), 1, + anon_sym_RBRACE, + STATE(1421), 1, + aux_sym_object_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49822] = 4, - ACTIONS(698), 1, + [54100] = 4, + ACTIONS(3471), 1, anon_sym_COMMA, - ACTIONS(1795), 1, - anon_sym_RPAREN, - STATE(1221), 1, - aux_sym_array_repeat1, + ACTIONS(3474), 1, + anon_sym_RBRACE, + STATE(1477), 1, + aux_sym_named_imports_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49836] = 4, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(2481), 1, + [54114] = 3, + ACTIONS(3476), 1, anon_sym_DOT, - ACTIONS(3174), 1, - anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49850] = 4, - ACTIONS(3176), 1, - anon_sym_COMMA, - ACTIONS(3179), 1, - anon_sym_RBRACE, - STATE(1366), 1, - aux_sym_object_repeat1, + ACTIONS(2743), 2, + anon_sym_LPAREN, + sym_optional_chain, + [54126] = 4, + ACTIONS(2939), 1, + anon_sym_LPAREN, + ACTIONS(3478), 1, + sym_identifier, + STATE(1671), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49864] = 4, - ACTIONS(698), 1, + [54140] = 4, + ACTIONS(910), 1, anon_sym_COMMA, - ACTIONS(3181), 1, + ACTIONS(2021), 1, anon_sym_RPAREN, - STATE(1221), 1, + STATE(1465), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49878] = 4, - ACTIONS(3183), 1, + [54154] = 3, + ACTIONS(3163), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1550), 2, + anon_sym_of, + anon_sym_in, + [54166] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3480), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [54176] = 4, + ACTIONS(910), 1, anon_sym_COMMA, - ACTIONS(3186), 1, - anon_sym_RBRACE, - STATE(1368), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(3482), 1, + anon_sym_RBRACK, + STATE(1354), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49892] = 4, - ACTIONS(665), 1, + [54190] = 4, + ACTIONS(873), 1, anon_sym_COMMA, - ACTIONS(2871), 1, + ACTIONS(3215), 1, anon_sym_RBRACK, - STATE(1284), 1, + STATE(1430), 1, aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49906] = 4, - ACTIONS(2647), 1, - anon_sym_LPAREN, - ACTIONS(3188), 1, - sym_identifier, - STATE(1437), 1, - sym_formal_parameters, + [54204] = 4, + ACTIONS(910), 1, + anon_sym_COMMA, + ACTIONS(2039), 1, + anon_sym_RBRACK, + STATE(1429), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49920] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(954), 1, - sym_statement_block, + [54218] = 4, + ACTIONS(918), 1, + anon_sym_RPAREN, + ACTIONS(3484), 1, + anon_sym_COMMA, + STATE(1475), 1, + aux_sym_formal_parameters_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49931] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(951), 1, - sym_statement_block, + [54232] = 4, + ACTIONS(2273), 1, + anon_sym_COMMA, + ACTIONS(3486), 1, + anon_sym_RBRACE, + STATE(1417), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49942] = 3, - ACTIONS(3190), 1, - anon_sym_LBRACE, - STATE(517), 1, - sym_statement_block, + [54246] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49953] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1449), 1, - sym_formal_parameters, + ACTIONS(2017), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [54256] = 4, + ACTIONS(3248), 1, + anon_sym_from, + ACTIONS(3488), 1, + anon_sym_as, + STATE(1686), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49964] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(663), 1, - sym_statement_block, + [54270] = 4, + ACTIONS(910), 1, + anon_sym_COMMA, + ACTIONS(2039), 1, + anon_sym_RBRACK, + STATE(1354), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49975] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(925), 1, - sym_statement_block, + [54284] = 4, + ACTIONS(873), 1, + anon_sym_COMMA, + ACTIONS(3215), 1, + anon_sym_RBRACK, + STATE(1433), 1, + aux_sym_array_pattern_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49986] = 3, - ACTIONS(2647), 1, + [54298] = 4, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1373), 1, + ACTIONS(3490), 1, + sym_identifier, + STATE(1671), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [49997] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(73), 1, - sym_statement_block, + [54312] = 3, + ACTIONS(3494), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50008] = 2, + ACTIONS(3492), 2, + anon_sym_of, + anon_sym_in, + [54324] = 4, + ACTIONS(3125), 1, + sym_identifier, + ACTIONS(3127), 1, + anon_sym_LBRACK, + ACTIONS(3129), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3194), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [50017] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1580), 1, - sym_formal_parameters, + [54338] = 3, + ACTIONS(3498), 1, + sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50028] = 2, + ACTIONS(3496), 2, + anon_sym_of, + anon_sym_in, + [54350] = 4, + ACTIONS(2751), 1, + anon_sym_COLON, + ACTIONS(2757), 1, + anon_sym_DOT, + ACTIONS(3500), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3074), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [50037] = 2, + [54364] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3196), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [50046] = 2, + ACTIONS(3502), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [54374] = 4, + ACTIONS(3504), 1, + anon_sym_await, + ACTIONS(3506), 1, + anon_sym_LPAREN, + STATE(69), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3198), 2, - anon_sym_in, - anon_sym_of, - [50055] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(946), 1, - sym_statement_block, + [54388] = 4, + ACTIONS(2273), 1, + anon_sym_COMMA, + ACTIONS(3344), 1, + anon_sym_RBRACE, + STATE(1417), 1, + aux_sym_object_repeat1, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50066] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(324), 1, - sym_statement_block, + [54402] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50077] = 3, - ACTIONS(2119), 1, + ACTIONS(3508), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54411] = 3, + ACTIONS(3510), 1, anon_sym_LBRACE, - STATE(949), 1, + STATE(789), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50088] = 3, - ACTIONS(3200), 1, - anon_sym_LPAREN, - STATE(358), 1, - sym_parenthesized_expression, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50099] = 3, - ACTIONS(2831), 1, - anon_sym_in, - ACTIONS(2833), 1, - anon_sym_of, + [54422] = 3, + ACTIONS(3510), 1, + anon_sym_LBRACE, + STATE(94), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50110] = 3, - ACTIONS(3202), 1, + [54433] = 3, + ACTIONS(3512), 1, sym_identifier, - ACTIONS(3204), 1, - anon_sym_STAR, + ACTIONS(3514), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50121] = 3, - ACTIONS(2475), 1, - anon_sym_COLON, + [54444] = 3, ACTIONS(3090), 1, - anon_sym_GT, + sym_identifier, + ACTIONS(3094), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50132] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(952), 1, - sym_statement_block, + [54455] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50143] = 3, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(3090), 1, - anon_sym_GT, + ACTIONS(1944), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54464] = 3, + ACTIONS(3516), 1, + anon_sym_LPAREN, + STATE(70), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50154] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(360), 1, - sym_statement_block, + [54475] = 3, + ACTIONS(3518), 1, + sym_identifier, + ACTIONS(3520), 1, + sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50165] = 3, - ACTIONS(2647), 1, + [54486] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1576), 1, + STATE(1571), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50176] = 3, - ACTIONS(3206), 1, + [54497] = 3, + ACTIONS(3125), 1, sym_identifier, - ACTIONS(3208), 1, + ACTIONS(3129), 1, sym_private_property_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50187] = 3, - ACTIONS(3190), 1, + [54508] = 3, + ACTIONS(3017), 1, anon_sym_LBRACE, - STATE(522), 1, - sym_statement_block, + STATE(783), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50198] = 2, + [54519] = 3, + ACTIONS(2751), 1, + anon_sym_COLON, + ACTIONS(3382), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1415), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50207] = 3, - ACTIONS(3210), 1, - anon_sym_SEMI, - ACTIONS(3212), 1, - sym__automatic_semicolon, + [54530] = 3, + ACTIONS(2757), 1, + anon_sym_DOT, + ACTIONS(3382), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50218] = 2, + [54541] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3214), 2, + ACTIONS(1724), 2, sym__automatic_semicolon, anon_sym_SEMI, - [50227] = 3, - ACTIONS(3216), 1, - anon_sym_LBRACE, - STATE(1562), 1, - sym_object, + [54550] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50238] = 2, + ACTIONS(3374), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54559] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1040), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3218), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50247] = 3, - ACTIONS(3220), 1, - anon_sym_SEMI, - ACTIONS(3222), 1, - sym__automatic_semicolon, + [54570] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50258] = 3, - ACTIONS(2835), 1, - sym_identifier, - ACTIONS(2839), 1, - sym_private_property_identifier, + ACTIONS(3363), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54579] = 3, + ACTIONS(3516), 1, + anon_sym_LPAREN, + STATE(54), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50269] = 3, - ACTIONS(3192), 1, + [54590] = 3, + ACTIONS(3510), 1, anon_sym_LBRACE, - STATE(74), 1, + STATE(95), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50280] = 3, - ACTIONS(2647), 1, + [54601] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1538), 1, + STATE(1714), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50291] = 2, + [54612] = 3, + ACTIONS(3516), 1, + anon_sym_LPAREN, + STATE(40), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1474), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50300] = 2, + [54623] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1478), 2, + ACTIONS(1688), 2, sym__automatic_semicolon, anon_sym_SEMI, - [50309] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1539), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50320] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1544), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50331] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1471), 1, - sym_formal_parameters, + [54632] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50342] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(346), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50353] = 3, - ACTIONS(2647), 1, + ACTIONS(1692), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54641] = 3, + ACTIONS(3516), 1, anon_sym_LPAREN, - STATE(1606), 1, - sym_formal_parameters, + STATE(56), 1, + sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50364] = 3, - ACTIONS(3030), 1, + [54652] = 3, + ACTIONS(3510), 1, anon_sym_LBRACE, - STATE(943), 1, + STATE(736), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50375] = 3, - ACTIONS(2647), 1, + [54663] = 3, + ACTIONS(2395), 1, anon_sym_LPAREN, - STATE(1472), 1, - sym_formal_parameters, + ACTIONS(2577), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50386] = 3, - ACTIONS(2475), 1, + [54674] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3522), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [54683] = 3, + ACTIONS(2751), 1, anon_sym_COLON, - ACTIONS(3103), 1, + ACTIONS(3500), 1, anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50397] = 3, - ACTIONS(2647), 1, + [54694] = 3, + ACTIONS(2395), 1, anon_sym_LPAREN, - STATE(1547), 1, - sym_formal_parameters, + ACTIONS(3524), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50408] = 3, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(3103), 1, - anon_sym_GT, + [54705] = 3, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1578), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50419] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1396), 1, - sym_formal_parameters, + [54716] = 3, + ACTIONS(3017), 1, + anon_sym_LBRACE, + STATE(768), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50430] = 3, - ACTIONS(3190), 1, + [54727] = 3, + ACTIONS(3526), 1, anon_sym_LBRACE, - STATE(519), 1, + STATE(627), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50441] = 3, - ACTIONS(3190), 1, + [54738] = 3, + ACTIONS(3526), 1, anon_sym_LBRACE, - STATE(520), 1, + STATE(631), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50452] = 2, + [54749] = 3, + ACTIONS(3510), 1, + anon_sym_LBRACE, + STATE(782), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3186), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50461] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1475), 1, - sym_formal_parameters, + [54760] = 3, + ACTIONS(2757), 1, + anon_sym_DOT, + ACTIONS(3500), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50472] = 2, + [54771] = 3, + ACTIONS(3528), 1, + anon_sym_LPAREN, + STATE(58), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3224), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [50481] = 3, - ACTIONS(3018), 1, - anon_sym_from, - STATE(1398), 1, - sym__from_clause, + [54782] = 3, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1533), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50492] = 3, - ACTIONS(2724), 1, + [54793] = 3, + ACTIONS(3017), 1, anon_sym_LBRACE, - STATE(521), 1, + STATE(93), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50503] = 3, - ACTIONS(3226), 1, - anon_sym_LPAREN, - STATE(25), 1, - sym_parenthesized_expression, + [54804] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50514] = 3, - ACTIONS(2760), 1, + ACTIONS(3530), 2, anon_sym_LBRACE, - STATE(72), 1, - sym_class_body, + anon_sym_EQ_GT, + [54813] = 3, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1579), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50525] = 3, - ACTIONS(3226), 1, + [54824] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(32), 1, - sym_parenthesized_expression, + STATE(1589), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50536] = 2, + [54835] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3034), 2, + ACTIONS(3446), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [50545] = 2, + anon_sym_RBRACE, + [54844] = 3, + ACTIONS(3350), 1, + anon_sym_LBRACE, + STATE(1045), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3179), 2, + [54855] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3532), 2, anon_sym_COMMA, anon_sym_RBRACE, - [50554] = 3, - ACTIONS(3226), 1, + [54864] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(34), 1, - sym_parenthesized_expression, + STATE(1700), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50565] = 3, - ACTIONS(2119), 1, + [54875] = 3, + ACTIONS(3534), 1, anon_sym_LBRACE, - STATE(947), 1, + STATE(403), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50576] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1378), 1, - sym_formal_parameters, + [54886] = 3, + ACTIONS(3534), 1, + anon_sym_LBRACE, + STATE(415), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50587] = 3, - ACTIONS(3192), 1, + [54897] = 3, + ACTIONS(3282), 1, anon_sym_LBRACE, - STATE(627), 1, - sym_statement_block, + STATE(392), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50598] = 2, + [54908] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1719), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50607] = 3, - ACTIONS(2647), 1, + ACTIONS(1937), 2, anon_sym_LPAREN, - STATE(1404), 1, - sym_formal_parameters, + anon_sym_COLON, + [54917] = 3, + ACTIONS(2751), 1, + anon_sym_COLON, + ACTIONS(3415), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54928] = 3, + ACTIONS(2757), 1, + anon_sym_DOT, + ACTIONS(3415), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50618] = 3, - ACTIONS(3192), 1, + [54939] = 3, + ACTIONS(3350), 1, anon_sym_LBRACE, - STATE(633), 1, + STATE(1064), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50629] = 3, - ACTIONS(3228), 1, + [54950] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(36), 1, - sym__for_header, + STATE(1704), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50640] = 3, - ACTIONS(2119), 1, + [54961] = 3, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1556), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54972] = 3, + ACTIONS(3070), 1, anon_sym_LBRACE, - STATE(927), 1, - sym_statement_block, + STATE(643), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50651] = 3, - ACTIONS(2109), 1, + [54983] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - ACTIONS(2275), 1, - anon_sym_EQ_GT, + STATE(1567), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50662] = 3, - ACTIONS(3030), 1, + [54994] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(924), 1, + STATE(1044), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50673] = 3, - ACTIONS(3192), 1, + [55005] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(70), 1, + STATE(1045), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50684] = 3, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(3230), 1, - anon_sym_EQ_GT, + [55016] = 3, + ACTIONS(3350), 1, + anon_sym_LBRACE, + STATE(1065), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50695] = 3, - ACTIONS(2647), 1, + [55027] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1569), 1, + STATE(1705), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50706] = 3, - ACTIONS(3232), 1, - anon_sym_COMMA, - ACTIONS(3234), 1, - anon_sym_from, + [55038] = 3, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1574), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50717] = 3, - ACTIONS(3018), 1, - anon_sym_from, - STATE(1261), 1, - sym__from_clause, + [55049] = 3, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1706), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50728] = 2, + [55060] = 3, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1707), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3236), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50737] = 2, + [55071] = 3, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1586), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3238), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50746] = 3, - ACTIONS(3192), 1, + [55082] = 3, + ACTIONS(3350), 1, anon_sym_LBRACE, - STATE(68), 1, + STATE(1066), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50757] = 3, - ACTIONS(2724), 1, - anon_sym_LBRACE, - STATE(516), 1, - sym_class_body, + [55093] = 3, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1711), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50768] = 2, + [55104] = 3, + ACTIONS(3070), 1, + anon_sym_LBRACE, + STATE(644), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3240), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50777] = 3, - ACTIONS(2119), 1, + [55115] = 3, + ACTIONS(3526), 1, anon_sym_LBRACE, - STATE(930), 1, + STATE(645), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50788] = 2, + [55126] = 3, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1719), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3242), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50797] = 2, + [55137] = 3, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1720), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3038), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50806] = 2, + [55148] = 3, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1721), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3244), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50815] = 3, - ACTIONS(2760), 1, + [55159] = 3, + ACTIONS(3350), 1, anon_sym_LBRACE, - STATE(75), 1, - sym_class_body, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [50826] = 3, - ACTIONS(3226), 1, - anon_sym_LPAREN, - STATE(1464), 1, - sym_parenthesized_expression, + STATE(1068), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50837] = 3, - ACTIONS(2647), 1, + [55170] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1586), 1, + STATE(1735), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50848] = 3, - ACTIONS(2119), 1, + [55181] = 3, + ACTIONS(3526), 1, anon_sym_LBRACE, - STATE(931), 1, + STATE(641), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50859] = 3, - ACTIONS(3030), 1, + [55192] = 3, + ACTIONS(3510), 1, anon_sym_LBRACE, - STATE(933), 1, + STATE(702), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50870] = 2, + [55203] = 3, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1742), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3246), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50879] = 3, - ACTIONS(2647), 1, + [55214] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1555), 1, + STATE(1743), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50890] = 3, - ACTIONS(2647), 1, + [55225] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1529), 1, + STATE(1744), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50901] = 3, - ACTIONS(3248), 1, + [55236] = 3, + ACTIONS(3350), 1, anon_sym_LBRACE, - STATE(400), 1, - sym_switch_body, + STATE(1069), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50912] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1556), 1, - sym_formal_parameters, + [55247] = 3, + ACTIONS(3350), 1, + anon_sym_LBRACE, + STATE(1070), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50923] = 3, - ACTIONS(2647), 1, + [55258] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1590), 1, + STATE(1608), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50934] = 3, - ACTIONS(2647), 1, + [55269] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1557), 1, + STATE(1615), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50945] = 2, + [55280] = 3, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1616), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3128), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50954] = 3, - ACTIONS(2647), 1, + [55291] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1593), 1, + STATE(1618), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50965] = 3, - ACTIONS(2647), 1, + [55302] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1594), 1, + STATE(1619), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50976] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(926), 1, - sym_statement_block, + [55313] = 3, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1621), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50987] = 3, - ACTIONS(3030), 1, + [55324] = 3, + ACTIONS(3510), 1, anon_sym_LBRACE, - STATE(928), 1, + STATE(752), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [50998] = 3, - ACTIONS(3228), 1, + [55335] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(52), 1, - sym__for_header, + STATE(1622), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51009] = 3, - ACTIONS(3226), 1, + [55346] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(28), 1, - sym_parenthesized_expression, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51020] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(932), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51031] = 2, + STATE(1623), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3250), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51040] = 3, - ACTIONS(2119), 1, + [55357] = 3, + ACTIONS(3350), 1, anon_sym_LBRACE, - STATE(969), 1, + STATE(1037), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51051] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(937), 1, - sym_statement_block, + [55368] = 3, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1626), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51062] = 2, + [55379] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3252), 2, + ACTIONS(3536), 2, anon_sym_COMMA, anon_sym_RBRACE, - [51071] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(938), 1, - sym_statement_block, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [51082] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(939), 1, - sym_statement_block, + [55388] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51093] = 3, - ACTIONS(3254), 1, - anon_sym_LBRACE, - STATE(338), 1, - sym_statement_block, + ACTIONS(3474), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [55397] = 3, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1630), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51104] = 2, + [55408] = 3, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1631), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3256), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [51113] = 3, - ACTIONS(2647), 1, + [55419] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1598), 1, + STATE(1633), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51124] = 3, - ACTIONS(2647), 1, + [55430] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1599), 1, + STATE(1634), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51135] = 3, - ACTIONS(2647), 1, + [55441] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1600), 1, + STATE(1635), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51146] = 3, - ACTIONS(2647), 1, + [55452] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1602), 1, + STATE(1636), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51157] = 3, - ACTIONS(2647), 1, + [55463] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1603), 1, + STATE(1637), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51168] = 3, - ACTIONS(2647), 1, + [55474] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1604), 1, + STATE(1638), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51179] = 2, + [55485] = 3, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1639), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3258), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [51188] = 2, + [55496] = 3, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1640), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3049), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [51197] = 3, - ACTIONS(2647), 1, + [55507] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1607), 1, + STATE(1641), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51208] = 3, - ACTIONS(2647), 1, + [55518] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1609), 1, + STATE(1642), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51219] = 3, - ACTIONS(2647), 1, + [55529] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1442), 1, + STATE(1643), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51230] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1612), 1, - sym_formal_parameters, + [55540] = 3, + ACTIONS(3538), 1, + anon_sym_COMMA, + ACTIONS(3540), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51241] = 3, - ACTIONS(3030), 1, + [55551] = 3, + ACTIONS(3017), 1, anon_sym_LBRACE, - STATE(940), 1, - sym_statement_block, + STATE(724), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51252] = 3, - ACTIONS(3030), 1, + [55562] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(941), 1, + STATE(1064), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51263] = 3, - ACTIONS(2647), 1, + [55573] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1482), 1, + STATE(1646), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51274] = 3, - ACTIONS(2647), 1, + [55584] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1613), 1, + STATE(1647), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51285] = 3, - ACTIONS(2647), 1, + [55595] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1372), 1, + STATE(1650), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51296] = 3, - ACTIONS(2647), 1, + [55606] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1371), 1, + STATE(1651), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51307] = 3, - ACTIONS(2647), 1, + [55617] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1510), 1, + STATE(1652), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51318] = 3, - ACTIONS(2647), 1, + [55628] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1376), 1, + STATE(1653), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51329] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1384), 1, - sym_formal_parameters, + [55639] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1065), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51340] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1386), 1, - sym_formal_parameters, + [55650] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1066), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51351] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1391), 1, - sym_formal_parameters, + [55661] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1068), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51362] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1432), 1, - sym_formal_parameters, + [55672] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1069), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51373] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1439), 1, - sym_formal_parameters, + [55683] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1070), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51384] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1452), 1, - sym_formal_parameters, + [55694] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51395] = 3, - ACTIONS(2119), 1, + ACTIONS(716), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [55703] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(935), 1, + STATE(1037), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51406] = 3, - ACTIONS(3254), 1, + [55714] = 3, + ACTIONS(3526), 1, anon_sym_LBRACE, - STATE(349), 1, + STATE(620), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51417] = 3, - ACTIONS(3030), 1, + [55725] = 3, + ACTIONS(3526), 1, anon_sym_LBRACE, - STATE(934), 1, + STATE(605), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51428] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1522), 1, - sym_formal_parameters, + [55736] = 3, + ACTIONS(3070), 1, + anon_sym_LBRACE, + STATE(612), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51439] = 3, - ACTIONS(3030), 1, + [55747] = 3, + ACTIONS(3248), 1, + anon_sym_from, + STATE(1372), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55758] = 3, + ACTIONS(3510), 1, anon_sym_LBRACE, - STATE(942), 1, + STATE(774), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51450] = 3, - ACTIONS(2647), 1, + [55769] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, STATE(1524), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51461] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1535), 1, - sym_formal_parameters, + [55780] = 3, + ACTIONS(3510), 1, + anon_sym_LBRACE, + STATE(772), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51472] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1573), 1, - sym_formal_parameters, + [55791] = 3, + ACTIONS(3510), 1, + anon_sym_LBRACE, + STATE(773), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51483] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1577), 1, - sym_formal_parameters, + [55802] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1046), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51494] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1591), 1, - sym_formal_parameters, + [55813] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1048), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51505] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1596), 1, - sym_formal_parameters, + [55824] = 3, + ACTIONS(3017), 1, + anon_sym_LBRACE, + STATE(786), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51516] = 3, - ACTIONS(3030), 1, + [55835] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(936), 1, + STATE(1049), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51527] = 3, - ACTIONS(3192), 1, + [55846] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(657), 1, + STATE(1050), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51538] = 3, - ACTIONS(3254), 1, + [55857] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(350), 1, + STATE(1051), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51549] = 3, - ACTIONS(2119), 1, + [55868] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(937), 1, + STATE(1052), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51560] = 3, - ACTIONS(3030), 1, + [55879] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(951), 1, + STATE(1059), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51571] = 3, - ACTIONS(3030), 1, + [55890] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(954), 1, + STATE(1060), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51582] = 3, - ACTIONS(3030), 1, + [55901] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(935), 1, + STATE(1061), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51593] = 3, - ACTIONS(3260), 1, - anon_sym_SEMI, - ACTIONS(3262), 1, - sym__automatic_semicolon, + [55912] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1062), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51604] = 3, - ACTIONS(3030), 1, + [55923] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(925), 1, + STATE(1063), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51615] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1478), 1, - sym_formal_parameters, + [55934] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1039), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51626] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1480), 1, - sym_formal_parameters, + [55945] = 3, + ACTIONS(3526), 1, + anon_sym_LBRACE, + STATE(636), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51637] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1481), 1, - sym_formal_parameters, + [55956] = 3, + ACTIONS(3350), 1, + anon_sym_LBRACE, + STATE(1040), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51648] = 3, - ACTIONS(2724), 1, + [55967] = 3, + ACTIONS(3017), 1, anon_sym_LBRACE, - STATE(539), 1, + STATE(98), 1, sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51659] = 3, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(3144), 1, - anon_sym_GT, + [55978] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1053), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51670] = 3, - ACTIONS(2119), 1, + [55989] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(938), 1, + STATE(1054), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51681] = 3, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(3144), 1, - anon_sym_GT, + [56000] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51692] = 3, - ACTIONS(3190), 1, + ACTIONS(3542), 2, + anon_sym_of, + anon_sym_in, + [56009] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3544), 2, + anon_sym_of, + anon_sym_in, + [56018] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(540), 1, + STATE(1055), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51703] = 3, - ACTIONS(3030), 1, + [56029] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(946), 1, + STATE(1056), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51714] = 3, - ACTIONS(3030), 1, + [56040] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(949), 1, + STATE(1057), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51725] = 3, - ACTIONS(3264), 1, - sym_identifier, - ACTIONS(3266), 1, - sym_jsx_identifier, + [56051] = 3, + ACTIONS(2405), 1, + anon_sym_LBRACE, + STATE(1058), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51736] = 3, - ACTIONS(3268), 1, + [56062] = 3, + ACTIONS(3546), 1, sym_identifier, - ACTIONS(3270), 1, - sym_private_property_identifier, + ACTIONS(3548), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51747] = 3, - ACTIONS(2792), 1, + [56073] = 3, + ACTIONS(3550), 1, sym_identifier, - ACTIONS(2796), 1, - sym_private_property_identifier, + ACTIONS(3552), 1, + anon_sym_STAR, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51758] = 3, - ACTIONS(3272), 1, + [56084] = 3, + ACTIONS(3017), 1, + anon_sym_LBRACE, + STATE(807), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56095] = 3, + ACTIONS(3516), 1, + anon_sym_LPAREN, + STATE(71), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56106] = 3, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1683), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56117] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3554), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [56126] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3556), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [56135] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3466), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [56144] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1956), 2, + sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(3274), 1, + [56153] = 3, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1502), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56164] = 3, + ACTIONS(3558), 1, + anon_sym_SEMI, + ACTIONS(3560), 1, sym__automatic_semicolon, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51769] = 3, - ACTIONS(3030), 1, + [56175] = 3, + ACTIONS(3510), 1, anon_sym_LBRACE, - STATE(952), 1, + STATE(779), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51780] = 3, - ACTIONS(3226), 1, + [56186] = 3, + ACTIONS(3562), 1, + anon_sym_SEMI, + ACTIONS(3564), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56197] = 3, + ACTIONS(3566), 1, + anon_sym_LBRACE, + STATE(478), 1, + sym_switch_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56208] = 3, + ACTIONS(3516), 1, anon_sym_LPAREN, - STATE(50), 1, + STATE(57), 1, sym_parenthesized_expression, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51791] = 3, - ACTIONS(2867), 1, + [56219] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3568), 2, anon_sym_LBRACE, - STATE(351), 1, - sym_class_body, + anon_sym_EQ_GT, + [56228] = 3, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1518), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51802] = 3, - ACTIONS(3030), 1, + [56239] = 3, + ACTIONS(3510), 1, anon_sym_LBRACE, - STATE(947), 1, + STATE(764), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51813] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1419), 1, - sym_formal_parameters, + [56250] = 3, + ACTIONS(3510), 1, + anon_sym_LBRACE, + STATE(99), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51824] = 2, + [56261] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(509), 2, + ACTIONS(3570), 2, sym__automatic_semicolon, anon_sym_SEMI, - [51833] = 3, - ACTIONS(3192), 1, + [56270] = 3, + ACTIONS(3572), 1, + anon_sym_SEMI, + ACTIONS(3574), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56281] = 3, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1672), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56292] = 3, + ACTIONS(3282), 1, anon_sym_LBRACE, - STATE(680), 1, - sym_statement_block, + STATE(398), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51844] = 3, - ACTIONS(2119), 1, + [56303] = 3, + ACTIONS(3516), 1, + anon_sym_LPAREN, + STATE(1667), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56314] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3576), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56323] = 3, + ACTIONS(3510), 1, anon_sym_LBRACE, - STATE(936), 1, + STATE(96), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51855] = 3, - ACTIONS(2647), 1, + [56334] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1496), 1, + STATE(1545), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51866] = 3, - ACTIONS(2647), 1, + [56345] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1497), 1, + STATE(1546), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51877] = 3, - ACTIONS(2647), 1, + [56356] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1514), 1, + STATE(1542), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51888] = 3, - ACTIONS(3030), 1, + [56367] = 3, + ACTIONS(3534), 1, + anon_sym_LBRACE, + STATE(409), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56378] = 3, + ACTIONS(3510), 1, anon_sym_LBRACE, - STATE(927), 1, + STATE(699), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51899] = 3, - ACTIONS(3030), 1, + [56389] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3578), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56398] = 3, + ACTIONS(3580), 1, + anon_sym_SEMI, + ACTIONS(3582), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56409] = 3, + ACTIONS(3584), 1, + anon_sym_LPAREN, + STATE(395), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56420] = 3, + ACTIONS(3350), 1, anon_sym_LBRACE, - STATE(930), 1, + STATE(458), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51910] = 3, - ACTIONS(3030), 1, + [56431] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3586), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56440] = 3, + ACTIONS(3350), 1, anon_sym_LBRACE, - STATE(931), 1, + STATE(1044), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51921] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1413), 1, - sym_formal_parameters, + [56451] = 3, + ACTIONS(3350), 1, + anon_sym_LBRACE, + STATE(1053), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51932] = 2, + [56462] = 3, + ACTIONS(3248), 1, + anon_sym_from, + STATE(1664), 1, + sym__from_clause, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1731), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [51941] = 3, - ACTIONS(2760), 1, + [56473] = 3, + ACTIONS(3350), 1, anon_sym_LBRACE, - STATE(679), 1, - sym_class_body, + STATE(1054), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51952] = 2, + [56484] = 3, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1551), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1406), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51961] = 2, + [56495] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(3276), 2, + ACTIONS(1954), 2, sym__automatic_semicolon, anon_sym_SEMI, - [51970] = 3, - ACTIONS(3030), 1, + [56504] = 3, + ACTIONS(3017), 1, anon_sym_LBRACE, - STATE(955), 1, - sym_statement_block, + STATE(743), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51981] = 3, - ACTIONS(2760), 1, - anon_sym_LBRACE, - STATE(638), 1, - sym_class_body, + [56515] = 3, + ACTIONS(3528), 1, + anon_sym_LPAREN, + STATE(53), 1, + sym__for_header, ACTIONS(5), 2, sym_html_comment, sym_comment, - [51992] = 3, - ACTIONS(3190), 1, + [56526] = 3, + ACTIONS(2405), 1, anon_sym_LBRACE, - STATE(559), 1, + STATE(1078), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52003] = 3, - ACTIONS(2760), 1, - anon_sym_LBRACE, - STATE(640), 1, - sym_class_body, + [56537] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52014] = 3, - ACTIONS(3190), 1, + ACTIONS(3348), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [56546] = 3, + ACTIONS(3534), 1, anon_sym_LBRACE, - STATE(562), 1, + STATE(408), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52025] = 2, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - ACTIONS(1721), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52034] = 3, - ACTIONS(3192), 1, + [56557] = 3, + ACTIONS(3350), 1, anon_sym_LBRACE, - STATE(642), 1, + STATE(1055), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52045] = 2, + [56568] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - ACTIONS(1723), 2, + ACTIONS(3588), 2, sym__automatic_semicolon, anon_sym_SEMI, - [52054] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1512), 1, - sym_formal_parameters, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [52065] = 3, - ACTIONS(2867), 1, + [56577] = 3, + ACTIONS(3590), 1, anon_sym_LBRACE, - STATE(347), 1, - sym_class_body, + STATE(1685), 1, + sym_object, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52076] = 3, - ACTIONS(2119), 1, + [56588] = 3, + ACTIONS(3350), 1, anon_sym_LBRACE, - STATE(939), 1, + STATE(1046), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52087] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1511), 1, - sym_formal_parameters, + [56599] = 3, + ACTIONS(3350), 1, + anon_sym_LBRACE, + STATE(1048), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52098] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1523), 1, - sym_formal_parameters, + [56610] = 3, + ACTIONS(3350), 1, + anon_sym_LBRACE, + STATE(1049), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52109] = 3, - ACTIONS(3254), 1, + [56621] = 3, + ACTIONS(3350), 1, anon_sym_LBRACE, - STATE(353), 1, + STATE(1050), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52120] = 3, - ACTIONS(2119), 1, + [56632] = 3, + ACTIONS(3350), 1, anon_sym_LBRACE, - STATE(940), 1, + STATE(381), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52131] = 3, - ACTIONS(2647), 1, + [56643] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1460), 1, + STATE(1628), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52142] = 3, - ACTIONS(3226), 1, + [56654] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(35), 1, - sym_parenthesized_expression, + STATE(1690), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52153] = 3, - ACTIONS(3030), 1, + [56665] = 3, + ACTIONS(3350), 1, anon_sym_LBRACE, - STATE(945), 1, + STATE(1051), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52164] = 3, - ACTIONS(2475), 1, - anon_sym_COLON, - ACTIONS(3174), 1, - anon_sym_GT, - ACTIONS(5), 2, - sym_html_comment, - sym_comment, - [52175] = 3, - ACTIONS(2481), 1, - anon_sym_DOT, - ACTIONS(3174), 1, - anon_sym_GT, + [56676] = 3, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1691), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52186] = 3, - ACTIONS(2647), 1, + [56687] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1525), 1, + STATE(1629), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52197] = 3, - ACTIONS(2724), 1, + [56698] = 3, + ACTIONS(3510), 1, anon_sym_LBRACE, - STATE(566), 1, - sym_class_body, + STATE(754), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52208] = 3, - ACTIONS(2647), 1, + [56709] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1526), 1, + STATE(1693), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52219] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(950), 1, - sym_statement_block, + [56720] = 3, + ACTIONS(3056), 1, + anon_sym_of, + ACTIONS(3058), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52230] = 3, - ACTIONS(2119), 1, + [56731] = 3, + ACTIONS(3350), 1, anon_sym_LBRACE, - STATE(924), 1, + STATE(1056), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52241] = 3, - ACTIONS(2647), 1, + [56742] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1441), 1, + STATE(1701), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52252] = 3, - ACTIONS(2760), 1, + [56753] = 3, + ACTIONS(3350), 1, anon_sym_LBRACE, - STATE(647), 1, - sym_class_body, + STATE(1052), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52263] = 3, - ACTIONS(3192), 1, + [56764] = 3, + ACTIONS(3350), 1, anon_sym_LBRACE, - STATE(648), 1, + STATE(1059), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52274] = 3, - ACTIONS(2119), 1, + [56775] = 3, + ACTIONS(3350), 1, anon_sym_LBRACE, - STATE(941), 1, + STATE(1060), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52285] = 3, - ACTIONS(3190), 1, - anon_sym_LBRACE, - STATE(567), 1, - sym_statement_block, + [56786] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52296] = 3, - ACTIONS(3192), 1, + ACTIONS(3393), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [56795] = 3, + ACTIONS(3350), 1, anon_sym_LBRACE, - STATE(650), 1, + STATE(1057), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52307] = 3, - ACTIONS(3192), 1, + [56806] = 3, + ACTIONS(3592), 1, + sym_identifier, + ACTIONS(3594), 1, + sym_jsx_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [56817] = 3, + ACTIONS(3350), 1, anon_sym_LBRACE, - STATE(618), 1, + STATE(1058), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52318] = 3, - ACTIONS(2647), 1, + [56828] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1420), 1, + STATE(1558), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52329] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(942), 1, - sym_statement_block, + [56839] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52340] = 3, - ACTIONS(2760), 1, + ACTIONS(3596), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56848] = 3, + ACTIONS(3350), 1, anon_sym_LBRACE, - STATE(652), 1, - sym_class_body, + STATE(407), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52351] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(955), 1, - sym_statement_block, + [56859] = 3, + ACTIONS(3064), 1, + anon_sym_of, + ACTIONS(3066), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52362] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(945), 1, - sym_statement_block, + [56870] = 3, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1564), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52373] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(933), 1, - sym_statement_block, + [56881] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52384] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(943), 1, - sym_statement_block, + ACTIONS(3598), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56890] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52395] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(926), 1, - sym_statement_block, + ACTIONS(3600), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56899] = 3, + ACTIONS(2751), 1, + anon_sym_COLON, + ACTIONS(3384), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52406] = 3, - ACTIONS(2119), 1, - anon_sym_LBRACE, - STATE(928), 1, - sym_statement_block, + [56910] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52417] = 3, - ACTIONS(2119), 1, + ACTIONS(3602), 2, + anon_sym_of, + anon_sym_in, + [56919] = 3, + ACTIONS(3350), 1, anon_sym_LBRACE, - STATE(932), 1, + STATE(1061), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52428] = 3, - ACTIONS(2647), 1, - anon_sym_LPAREN, - STATE(1527), 1, - sym_formal_parameters, + [56930] = 3, + ACTIONS(2757), 1, + anon_sym_DOT, + ACTIONS(3384), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52439] = 3, - ACTIONS(3030), 1, - anon_sym_LBRACE, - STATE(950), 1, - sym_statement_block, + [56941] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52450] = 3, - ACTIONS(3192), 1, + ACTIONS(1749), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [56950] = 3, + ACTIONS(3070), 1, anon_sym_LBRACE, - STATE(653), 1, - sym_statement_block, + STATE(595), 1, + sym_class_body, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52461] = 3, - ACTIONS(3278), 1, - sym_identifier, - ACTIONS(3280), 1, - anon_sym_STAR, + [56961] = 3, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1717), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52472] = 3, - ACTIONS(3192), 1, - anon_sym_LBRACE, - STATE(654), 1, - sym_statement_block, + [56972] = 3, + ACTIONS(2939), 1, + anon_sym_LPAREN, + STATE(1723), 1, + sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52483] = 3, - ACTIONS(2647), 1, + [56983] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1563), 1, + STATE(1725), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52494] = 3, - ACTIONS(2760), 1, + [56994] = 3, + ACTIONS(3350), 1, anon_sym_LBRACE, - STATE(655), 1, - sym_class_body, + STATE(1062), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52505] = 3, - ACTIONS(3192), 1, + [57005] = 3, + ACTIONS(3350), 1, anon_sym_LBRACE, - STATE(656), 1, + STATE(1063), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52516] = 3, - ACTIONS(2119), 1, + [57016] = 3, + ACTIONS(3350), 1, anon_sym_LBRACE, - STATE(934), 1, + STATE(1039), 1, sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52527] = 3, - ACTIONS(2647), 1, + [57027] = 3, + ACTIONS(2939), 1, anon_sym_LPAREN, - STATE(1459), 1, + STATE(1679), 1, sym_formal_parameters, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52538] = 2, - ACTIONS(1805), 1, - anon_sym_RPAREN, + [57038] = 3, + ACTIONS(3526), 1, + anon_sym_LBRACE, + STATE(596), 1, + sym_statement_block, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52546] = 2, - ACTIONS(3282), 1, - sym_identifier, + [57049] = 2, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52554] = 2, - ACTIONS(1809), 1, + ACTIONS(3604), 2, + anon_sym_of, + anon_sym_in, + [57058] = 2, + ACTIONS(1991), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52562] = 2, - ACTIONS(3284), 1, - sym_identifier, + [57066] = 2, + ACTIONS(2101), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52570] = 2, - ACTIONS(3286), 1, - anon_sym_EQ_GT, + [57074] = 2, + ACTIONS(2109), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52578] = 2, - ACTIONS(3288), 1, - anon_sym_COLON, + [57082] = 2, + ACTIONS(3606), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52586] = 2, - ACTIONS(1819), 1, - anon_sym_SEMI, + [57090] = 2, + ACTIONS(3413), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52594] = 3, - ACTIONS(3), 1, + [57098] = 2, + ACTIONS(2019), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [57106] = 2, + ACTIONS(3608), 1, + anon_sym_target, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3290), 1, - anon_sym_SLASH2, - [52604] = 2, - ACTIONS(3292), 1, - anon_sym_EQ_GT, + sym_comment, + [57114] = 2, + ACTIONS(3610), 1, + anon_sym_while, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52612] = 2, - ACTIONS(3090), 1, - anon_sym_GT, + [57122] = 2, + ACTIONS(1804), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52620] = 2, - ACTIONS(3294), 1, + [57130] = 2, + ACTIONS(2003), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52628] = 2, - ACTIONS(3296), 1, - ts_builtin_sym_end, + [57138] = 2, + ACTIONS(3608), 1, + anon_sym_meta, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57146] = 2, + ACTIONS(3612), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52636] = 2, - ACTIONS(3298), 1, + [57154] = 2, + ACTIONS(1989), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52644] = 2, - ACTIONS(3300), 1, - anon_sym_as, + [57162] = 2, + ACTIONS(2005), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52652] = 2, - ACTIONS(3302), 1, - sym_identifier, + [57170] = 2, + ACTIONS(2999), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52660] = 3, - ACTIONS(3), 1, + [57178] = 2, + ACTIONS(3614), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [57186] = 2, + ACTIONS(2111), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3304), 1, - anon_sym_SLASH2, - [52670] = 2, - ACTIONS(2109), 1, - anon_sym_LPAREN, + sym_comment, + [57194] = 2, + ACTIONS(2045), 1, + anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52678] = 2, - ACTIONS(3230), 1, - anon_sym_EQ_GT, + [57202] = 2, + ACTIONS(3616), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52686] = 2, - ACTIONS(3306), 1, - anon_sym_EQ_GT, + [57210] = 2, + ACTIONS(2395), 1, + anon_sym_LPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52694] = 2, - ACTIONS(3308), 1, - anon_sym_RPAREN, + [57218] = 2, + ACTIONS(2577), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52702] = 3, + [57226] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3310), 1, + ACTIONS(3618), 1, sym_regex_pattern, - [52712] = 3, + [57236] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3312), 1, + ACTIONS(3620), 1, anon_sym_SLASH2, - [52722] = 2, - ACTIONS(1562), 1, + [57246] = 2, + ACTIONS(2189), 1, anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52730] = 2, - ACTIONS(1831), 1, - anon_sym_SEMI, + [57254] = 2, + ACTIONS(3622), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52738] = 2, - ACTIONS(1813), 1, - anon_sym_SEMI, + [57262] = 2, + ACTIONS(2127), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52746] = 2, - ACTIONS(3314), 1, - anon_sym_from, + [57270] = 2, + ACTIONS(2015), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52754] = 2, - ACTIONS(1773), 1, - anon_sym_in, + [57278] = 2, + ACTIONS(3624), 1, + anon_sym_as, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52762] = 2, - ACTIONS(1817), 1, - anon_sym_RPAREN, + [57286] = 2, + ACTIONS(3626), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52770] = 2, - ACTIONS(3316), 1, - anon_sym_from, + [57294] = 2, + ACTIONS(2223), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52778] = 2, - ACTIONS(3318), 1, - anon_sym_EQ, + [57302] = 2, + ACTIONS(3628), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52786] = 2, - ACTIONS(1811), 1, - anon_sym_RPAREN, + [57310] = 2, + ACTIONS(3630), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52794] = 2, - ACTIONS(3078), 1, - anon_sym_RBRACE, + [57318] = 2, + ACTIONS(3632), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52802] = 2, - ACTIONS(1833), 1, - anon_sym_SEMI, + [57326] = 2, + ACTIONS(3634), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52810] = 2, - ACTIONS(1632), 1, - anon_sym_in, + [57334] = 2, + ACTIONS(3636), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52818] = 2, - ACTIONS(2895), 1, - anon_sym_EQ, + [57342] = 2, + ACTIONS(3638), 1, + anon_sym_using, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52826] = 2, - ACTIONS(1787), 1, - anon_sym_RPAREN, + [57350] = 2, + ACTIONS(3640), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52834] = 2, - ACTIONS(1821), 1, - anon_sym_RPAREN, + [57358] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3642), 1, + sym_regex_pattern, + [57368] = 2, + ACTIONS(3644), 1, + ts_builtin_sym_end, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52842] = 2, - ACTIONS(1839), 1, - anon_sym_RPAREN, + [57376] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3646), 1, + anon_sym_SLASH2, + [57386] = 2, + ACTIONS(3648), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52850] = 2, - ACTIONS(3320), 1, - anon_sym_while, + [57394] = 2, + ACTIONS(2049), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52858] = 2, - ACTIONS(3322), 1, - anon_sym_from, + [57402] = 2, + ACTIONS(3650), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52866] = 2, - ACTIONS(3324), 1, - anon_sym_EQ_GT, + [57410] = 2, + ACTIONS(3652), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52874] = 2, - ACTIONS(1843), 1, + [57418] = 2, + ACTIONS(1985), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52882] = 2, - ACTIONS(1737), 1, - anon_sym_RPAREN, + [57426] = 2, + ACTIONS(3654), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57434] = 2, + ACTIONS(3656), 1, + anon_sym_meta, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52890] = 2, - ACTIONS(1835), 1, + [57442] = 2, + ACTIONS(2007), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52898] = 2, - ACTIONS(3326), 1, - anon_sym_from, + [57450] = 2, + ACTIONS(3658), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52906] = 2, - ACTIONS(1783), 1, - anon_sym_RBRACK, + [57458] = 2, + ACTIONS(3660), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52914] = 2, - ACTIONS(3328), 1, - anon_sym_EQ, + [57466] = 2, + ACTIONS(1866), 1, + anon_sym_in, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52922] = 2, - ACTIONS(3330), 1, - sym_identifier, + [57474] = 2, + ACTIONS(3415), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52930] = 2, - ACTIONS(2766), 1, - anon_sym_EQ, + [57482] = 2, + ACTIONS(3662), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52938] = 2, - ACTIONS(1785), 1, - anon_sym_RPAREN, + [57490] = 2, + ACTIONS(3664), 1, + anon_sym_function, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52946] = 2, - ACTIONS(3332), 1, - sym_identifier, + [57498] = 2, + ACTIONS(3666), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52954] = 2, - ACTIONS(3334), 1, + [57506] = 2, + ACTIONS(3668), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52962] = 2, - ACTIONS(3336), 1, - sym_identifier, + [57514] = 2, + ACTIONS(2063), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52970] = 2, - ACTIONS(1807), 1, - anon_sym_COLON, + [57522] = 2, + ACTIONS(3670), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52978] = 2, - ACTIONS(1823), 1, + [57530] = 2, + ACTIONS(1987), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52986] = 2, - ACTIONS(1741), 1, + [57538] = 2, + ACTIONS(2117), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [52994] = 2, - ACTIONS(3338), 1, + [57546] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3672), 1, + anon_sym_SLASH2, + [57556] = 2, + ACTIONS(2153), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57564] = 2, + ACTIONS(3674), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53002] = 2, - ACTIONS(1797), 1, - anon_sym_RBRACK, + [57572] = 2, + ACTIONS(2077), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53010] = 2, - ACTIONS(1825), 1, + [57580] = 2, + ACTIONS(2107), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53018] = 2, - ACTIONS(3340), 1, - sym_identifier, + [57588] = 2, + ACTIONS(3676), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53026] = 2, - ACTIONS(1799), 1, - anon_sym_RBRACE, + [57596] = 2, + ACTIONS(3500), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53034] = 2, - ACTIONS(3342), 1, - anon_sym_as, + [57604] = 2, + ACTIONS(3163), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53042] = 2, - ACTIONS(3344), 1, - anon_sym_target, + [57612] = 2, + ACTIONS(3678), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53050] = 2, - ACTIONS(1827), 1, + [57620] = 2, + ACTIONS(2105), 1, anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53058] = 2, - ACTIONS(3174), 1, - anon_sym_GT, + [57628] = 2, + ACTIONS(3680), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53066] = 2, - ACTIONS(3346), 1, - anon_sym_function, + [57636] = 2, + ACTIONS(3682), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53074] = 2, - ACTIONS(1747), 1, - anon_sym_RPAREN, + [57644] = 2, + ACTIONS(3684), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53082] = 2, - ACTIONS(2275), 1, + [57652] = 2, + ACTIONS(3686), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53090] = 2, - ACTIONS(3348), 1, - anon_sym_from, + [57660] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3688), 1, + anon_sym_SLASH2, + [57670] = 2, + ACTIONS(3690), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53098] = 2, - ACTIONS(3350), 1, + [57678] = 2, + ACTIONS(3692), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57686] = 2, + ACTIONS(3694), 1, sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53106] = 2, - ACTIONS(3352), 1, - anon_sym_COLON, + [57694] = 2, + ACTIONS(2037), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53114] = 2, - ACTIONS(3344), 1, - anon_sym_meta, + [57702] = 2, + ACTIONS(3524), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53122] = 2, - ACTIONS(1837), 1, + [57710] = 2, + ACTIONS(3356), 1, anon_sym_RBRACE, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53130] = 3, + [57718] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3354), 1, + ACTIONS(3696), 1, sym_regex_pattern, - [53140] = 2, - ACTIONS(3356), 1, + [57728] = 2, + ACTIONS(1902), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57736] = 2, + ACTIONS(2119), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57744] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3698), 1, + sym_regex_pattern, + [57754] = 2, + ACTIONS(3700), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57762] = 2, + ACTIONS(3702), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53148] = 2, - ACTIONS(1829), 1, - anon_sym_RBRACE, + [57770] = 2, + ACTIONS(2121), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53156] = 2, - ACTIONS(3358), 1, - anon_sym_meta, + [57778] = 2, + ACTIONS(3704), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53164] = 3, - ACTIONS(3), 1, + [57786] = 2, + ACTIONS(3706), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [57794] = 2, + ACTIONS(2103), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3360), 1, - sym_regex_pattern, - [53174] = 2, - ACTIONS(3362), 1, - anon_sym_EQ, + sym_comment, + [57802] = 2, + ACTIONS(2113), 1, + anon_sym_COLON, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53182] = 2, - ACTIONS(1803), 1, - anon_sym_RBRACK, + [57810] = 2, + ACTIONS(3708), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53190] = 2, - ACTIONS(1793), 1, + [57818] = 2, + ACTIONS(2047), 1, anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53198] = 2, - ACTIONS(3364), 1, - anon_sym_EQ_GT, + [57826] = 2, + ACTIONS(2001), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53206] = 2, - ACTIONS(3366), 1, - anon_sym_from, + [57834] = 2, + ACTIONS(2123), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53214] = 3, - ACTIONS(3), 1, + [57842] = 2, + ACTIONS(3710), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(5), 1, + [57850] = 2, + ACTIONS(2025), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, sym_html_comment, - ACTIONS(3368), 1, - sym_regex_pattern, - [53224] = 2, - ACTIONS(1871), 1, - anon_sym_in, + sym_comment, + [57858] = 2, + ACTIONS(3384), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53232] = 2, - ACTIONS(1674), 1, - anon_sym_in, + [57866] = 2, + ACTIONS(2011), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53240] = 2, - ACTIONS(3370), 1, - anon_sym_EQ_GT, + [57874] = 2, + ACTIONS(3712), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53248] = 2, - ACTIONS(3372), 1, + [57882] = 2, + ACTIONS(3714), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53256] = 2, - ACTIONS(3374), 1, - anon_sym_EQ_GT, + [57890] = 2, + ACTIONS(3716), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53264] = 2, - ACTIONS(3376), 1, + [57898] = 2, + ACTIONS(3718), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53272] = 2, - ACTIONS(3378), 1, - anon_sym_EQ_GT, + [57906] = 2, + ACTIONS(2125), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53280] = 2, - ACTIONS(3144), 1, - anon_sym_GT, + [57914] = 2, + ACTIONS(3720), 1, + anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53288] = 2, - ACTIONS(3380), 1, + [57922] = 2, + ACTIONS(2115), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57930] = 2, + ACTIONS(3722), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [57938] = 2, + ACTIONS(3724), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53296] = 2, - ACTIONS(3382), 1, + [57946] = 2, + ACTIONS(3726), 1, anon_sym_EQ, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53304] = 2, - ACTIONS(3384), 1, - anon_sym_EQ_GT, + [57954] = 2, + ACTIONS(2043), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53312] = 2, - ACTIONS(3386), 1, + [57962] = 2, + ACTIONS(3728), 1, anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53320] = 2, - ACTIONS(3068), 1, - anon_sym_RBRACE, + [57970] = 2, + ACTIONS(3730), 1, + sym_identifier, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53328] = 2, - ACTIONS(3358), 1, - anon_sym_target, + [57978] = 2, + ACTIONS(3382), 1, + anon_sym_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53336] = 2, - ACTIONS(3234), 1, + [57986] = 2, + ACTIONS(3540), 1, anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53344] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3388), 1, - anon_sym_SLASH2, - [53354] = 2, - ACTIONS(3390), 1, - anon_sym_from, + [57994] = 2, + ACTIONS(2013), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53362] = 2, - ACTIONS(3392), 1, - anon_sym_EQ_GT, + [58002] = 2, + ACTIONS(3732), 1, + anon_sym_RPAREN, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53370] = 2, - ACTIONS(1789), 1, - anon_sym_SEMI, + [58010] = 2, + ACTIONS(3656), 1, + anon_sym_target, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53378] = 2, - ACTIONS(3394), 1, - anon_sym_EQ_GT, + [58018] = 2, + ACTIONS(3734), 1, + anon_sym_from, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53386] = 2, - ACTIONS(1845), 1, - anon_sym_SEMI, + [58026] = 2, + ACTIONS(2023), 1, + anon_sym_RBRACK, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53394] = 2, - ACTIONS(3396), 1, - anon_sym_EQ, + [58034] = 2, + ACTIONS(2051), 1, + anon_sym_SEMI, ACTIONS(5), 2, sym_html_comment, sym_comment, - [53402] = 2, - ACTIONS(3103), 1, - anon_sym_GT, + [58042] = 2, + ACTIONS(3736), 1, + anon_sym_EQ_GT, ACTIONS(5), 2, sym_html_comment, sym_comment, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(326)] = 0, - [SMALL_STATE(327)] = 71, - [SMALL_STATE(328)] = 142, - [SMALL_STATE(329)] = 233, - [SMALL_STATE(330)] = 322, - [SMALL_STATE(331)] = 412, - [SMALL_STATE(332)] = 498, - [SMALL_STATE(333)] = 584, - [SMALL_STATE(334)] = 658, - [SMALL_STATE(335)] = 744, - [SMALL_STATE(336)] = 815, - [SMALL_STATE(337)] = 886, - [SMALL_STATE(338)] = 955, - [SMALL_STATE(339)] = 1026, - [SMALL_STATE(340)] = 1095, - [SMALL_STATE(341)] = 1164, - [SMALL_STATE(342)] = 1235, - [SMALL_STATE(343)] = 1304, - [SMALL_STATE(344)] = 1391, - [SMALL_STATE(345)] = 1480, - [SMALL_STATE(346)] = 1553, - [SMALL_STATE(347)] = 1622, - [SMALL_STATE(348)] = 1693, - [SMALL_STATE(349)] = 1762, - [SMALL_STATE(350)] = 1833, - [SMALL_STATE(351)] = 1904, - [SMALL_STATE(352)] = 1975, - [SMALL_STATE(353)] = 2062, - [SMALL_STATE(354)] = 2133, - [SMALL_STATE(355)] = 2204, - [SMALL_STATE(356)] = 2273, - [SMALL_STATE(357)] = 2358, - [SMALL_STATE(358)] = 2443, - [SMALL_STATE(359)] = 2514, - [SMALL_STATE(360)] = 2583, - [SMALL_STATE(361)] = 2651, - [SMALL_STATE(362)] = 2719, - [SMALL_STATE(363)] = 2787, - [SMALL_STATE(364)] = 2855, - [SMALL_STATE(365)] = 2923, - [SMALL_STATE(366)] = 2991, - [SMALL_STATE(367)] = 3059, - [SMALL_STATE(368)] = 3127, - [SMALL_STATE(369)] = 3195, - [SMALL_STATE(370)] = 3263, - [SMALL_STATE(371)] = 3331, - [SMALL_STATE(372)] = 3399, - [SMALL_STATE(373)] = 3467, - [SMALL_STATE(374)] = 3535, - [SMALL_STATE(375)] = 3603, - [SMALL_STATE(376)] = 3671, - [SMALL_STATE(377)] = 3739, - [SMALL_STATE(378)] = 3807, - [SMALL_STATE(379)] = 3875, - [SMALL_STATE(380)] = 3943, - [SMALL_STATE(381)] = 4011, - [SMALL_STATE(382)] = 4079, - [SMALL_STATE(383)] = 4147, - [SMALL_STATE(384)] = 4215, - [SMALL_STATE(385)] = 4283, - [SMALL_STATE(386)] = 4351, - [SMALL_STATE(387)] = 4419, - [SMALL_STATE(388)] = 4487, - [SMALL_STATE(389)] = 4555, - [SMALL_STATE(390)] = 4623, - [SMALL_STATE(391)] = 4691, - [SMALL_STATE(392)] = 4759, - [SMALL_STATE(393)] = 4827, - [SMALL_STATE(394)] = 4895, - [SMALL_STATE(395)] = 4963, - [SMALL_STATE(396)] = 5031, - [SMALL_STATE(397)] = 5099, - [SMALL_STATE(398)] = 5167, - [SMALL_STATE(399)] = 5235, - [SMALL_STATE(400)] = 5303, - [SMALL_STATE(401)] = 5371, - [SMALL_STATE(402)] = 5439, - [SMALL_STATE(403)] = 5507, - [SMALL_STATE(404)] = 5575, - [SMALL_STATE(405)] = 5643, - [SMALL_STATE(406)] = 5711, - [SMALL_STATE(407)] = 5779, - [SMALL_STATE(408)] = 5847, - [SMALL_STATE(409)] = 5915, - [SMALL_STATE(410)] = 5983, - [SMALL_STATE(411)] = 6071, - [SMALL_STATE(412)] = 6139, - [SMALL_STATE(413)] = 6207, - [SMALL_STATE(414)] = 6275, - [SMALL_STATE(415)] = 6343, - [SMALL_STATE(416)] = 6411, - [SMALL_STATE(417)] = 6479, - [SMALL_STATE(418)] = 6547, - [SMALL_STATE(419)] = 6615, - [SMALL_STATE(420)] = 6683, - [SMALL_STATE(421)] = 6751, - [SMALL_STATE(422)] = 6819, - [SMALL_STATE(423)] = 6887, - [SMALL_STATE(424)] = 6955, - [SMALL_STATE(425)] = 7023, - [SMALL_STATE(426)] = 7091, - [SMALL_STATE(427)] = 7174, - [SMALL_STATE(428)] = 7240, - [SMALL_STATE(429)] = 7306, - [SMALL_STATE(430)] = 7372, - [SMALL_STATE(431)] = 7442, - [SMALL_STATE(432)] = 7508, - [SMALL_STATE(433)] = 7590, - [SMALL_STATE(434)] = 7656, - [SMALL_STATE(435)] = 7738, - [SMALL_STATE(436)] = 7804, - [SMALL_STATE(437)] = 7870, - [SMALL_STATE(438)] = 7952, - [SMALL_STATE(439)] = 8023, - [SMALL_STATE(440)] = 8094, - [SMALL_STATE(441)] = 8165, - [SMALL_STATE(442)] = 8236, - [SMALL_STATE(443)] = 8319, - [SMALL_STATE(444)] = 8387, - [SMALL_STATE(445)] = 8450, - [SMALL_STATE(446)] = 8513, - [SMALL_STATE(447)] = 8576, - [SMALL_STATE(448)] = 8645, - [SMALL_STATE(449)] = 8708, - [SMALL_STATE(450)] = 8777, - [SMALL_STATE(451)] = 8840, - [SMALL_STATE(452)] = 8909, - [SMALL_STATE(453)] = 8980, - [SMALL_STATE(454)] = 9051, - [SMALL_STATE(455)] = 9120, - [SMALL_STATE(456)] = 9191, - [SMALL_STATE(457)] = 9262, - [SMALL_STATE(458)] = 9325, - [SMALL_STATE(459)] = 9394, - [SMALL_STATE(460)] = 9457, - [SMALL_STATE(461)] = 9526, - [SMALL_STATE(462)] = 9593, - [SMALL_STATE(463)] = 9656, - [SMALL_STATE(464)] = 9719, - [SMALL_STATE(465)] = 9790, - [SMALL_STATE(466)] = 9853, - [SMALL_STATE(467)] = 9924, - [SMALL_STATE(468)] = 9995, - [SMALL_STATE(469)] = 10066, - [SMALL_STATE(470)] = 10137, - [SMALL_STATE(471)] = 10206, - [SMALL_STATE(472)] = 10275, - [SMALL_STATE(473)] = 10338, - [SMALL_STATE(474)] = 10401, - [SMALL_STATE(475)] = 10464, - [SMALL_STATE(476)] = 10527, - [SMALL_STATE(477)] = 10590, - [SMALL_STATE(478)] = 10653, - [SMALL_STATE(479)] = 10724, - [SMALL_STATE(480)] = 10794, - [SMALL_STATE(481)] = 10866, - [SMALL_STATE(482)] = 10932, - [SMALL_STATE(483)] = 11002, - [SMALL_STATE(484)] = 11070, - [SMALL_STATE(485)] = 11142, - [SMALL_STATE(486)] = 11210, - [SMALL_STATE(487)] = 11278, - [SMALL_STATE(488)] = 11344, - [SMALL_STATE(489)] = 11415, - [SMALL_STATE(490)] = 11484, - [SMALL_STATE(491)] = 11551, - [SMALL_STATE(492)] = 11618, - [SMALL_STATE(493)] = 11689, - [SMALL_STATE(494)] = 11756, - [SMALL_STATE(495)] = 11826, - [SMALL_STATE(496)] = 11892, - [SMALL_STATE(497)] = 11958, - [SMALL_STATE(498)] = 12028, - [SMALL_STATE(499)] = 12096, - [SMALL_STATE(500)] = 12162, - [SMALL_STATE(501)] = 12228, - [SMALL_STATE(502)] = 12295, - [SMALL_STATE(503)] = 12358, - [SMALL_STATE(504)] = 12424, - [SMALL_STATE(505)] = 12484, - [SMALL_STATE(506)] = 12540, - [SMALL_STATE(507)] = 12593, - [SMALL_STATE(508)] = 12654, - [SMALL_STATE(509)] = 12707, - [SMALL_STATE(510)] = 12768, - [SMALL_STATE(511)] = 12831, - [SMALL_STATE(512)] = 12884, - [SMALL_STATE(513)] = 12939, - [SMALL_STATE(514)] = 13002, - [SMALL_STATE(515)] = 13054, - [SMALL_STATE(516)] = 13104, - [SMALL_STATE(517)] = 13154, - [SMALL_STATE(518)] = 13204, - [SMALL_STATE(519)] = 13254, - [SMALL_STATE(520)] = 13304, - [SMALL_STATE(521)] = 13354, - [SMALL_STATE(522)] = 13404, - [SMALL_STATE(523)] = 13454, - [SMALL_STATE(524)] = 13504, - [SMALL_STATE(525)] = 13554, - [SMALL_STATE(526)] = 13608, - [SMALL_STATE(527)] = 13658, - [SMALL_STATE(528)] = 13708, - [SMALL_STATE(529)] = 13758, - [SMALL_STATE(530)] = 13808, - [SMALL_STATE(531)] = 13858, - [SMALL_STATE(532)] = 13908, - [SMALL_STATE(533)] = 13958, - [SMALL_STATE(534)] = 14012, - [SMALL_STATE(535)] = 14062, - [SMALL_STATE(536)] = 14112, - [SMALL_STATE(537)] = 14162, - [SMALL_STATE(538)] = 14212, - [SMALL_STATE(539)] = 14262, - [SMALL_STATE(540)] = 14312, - [SMALL_STATE(541)] = 14362, - [SMALL_STATE(542)] = 14412, - [SMALL_STATE(543)] = 14466, - [SMALL_STATE(544)] = 14516, - [SMALL_STATE(545)] = 14566, - [SMALL_STATE(546)] = 14616, - [SMALL_STATE(547)] = 14666, - [SMALL_STATE(548)] = 14716, - [SMALL_STATE(549)] = 14766, - [SMALL_STATE(550)] = 14816, - [SMALL_STATE(551)] = 14866, - [SMALL_STATE(552)] = 14916, - [SMALL_STATE(553)] = 14966, - [SMALL_STATE(554)] = 15016, - [SMALL_STATE(555)] = 15066, - [SMALL_STATE(556)] = 15116, - [SMALL_STATE(557)] = 15166, - [SMALL_STATE(558)] = 15216, - [SMALL_STATE(559)] = 15266, - [SMALL_STATE(560)] = 15316, - [SMALL_STATE(561)] = 15366, - [SMALL_STATE(562)] = 15416, - [SMALL_STATE(563)] = 15466, - [SMALL_STATE(564)] = 15516, - [SMALL_STATE(565)] = 15566, - [SMALL_STATE(566)] = 15616, - [SMALL_STATE(567)] = 15666, - [SMALL_STATE(568)] = 15716, - [SMALL_STATE(569)] = 15766, - [SMALL_STATE(570)] = 15816, - [SMALL_STATE(571)] = 15866, - [SMALL_STATE(572)] = 15916, - [SMALL_STATE(573)] = 15966, - [SMALL_STATE(574)] = 16016, - [SMALL_STATE(575)] = 16097, - [SMALL_STATE(576)] = 16190, - [SMALL_STATE(577)] = 16283, - [SMALL_STATE(578)] = 16334, - [SMALL_STATE(579)] = 16427, - [SMALL_STATE(580)] = 16490, - [SMALL_STATE(581)] = 16583, - [SMALL_STATE(582)] = 16676, - [SMALL_STATE(583)] = 16769, - [SMALL_STATE(584)] = 16862, - [SMALL_STATE(585)] = 16919, - [SMALL_STATE(586)] = 17012, - [SMALL_STATE(587)] = 17085, - [SMALL_STATE(588)] = 17178, - [SMALL_STATE(589)] = 17241, - [SMALL_STATE(590)] = 17334, - [SMALL_STATE(591)] = 17419, - [SMALL_STATE(592)] = 17506, - [SMALL_STATE(593)] = 17575, - [SMALL_STATE(594)] = 17658, - [SMALL_STATE(595)] = 17743, - [SMALL_STATE(596)] = 17810, - [SMALL_STATE(597)] = 17903, - [SMALL_STATE(598)] = 17954, - [SMALL_STATE(599)] = 18017, - [SMALL_STATE(600)] = 18068, - [SMALL_STATE(601)] = 18145, - [SMALL_STATE(602)] = 18196, - [SMALL_STATE(603)] = 18285, - [SMALL_STATE(604)] = 18378, - [SMALL_STATE(605)] = 18430, - [SMALL_STATE(606)] = 18484, - [SMALL_STATE(607)] = 18534, - [SMALL_STATE(608)] = 18626, - [SMALL_STATE(609)] = 18674, - [SMALL_STATE(610)] = 18734, - [SMALL_STATE(611)] = 18784, - [SMALL_STATE(612)] = 18842, - [SMALL_STATE(613)] = 18892, - [SMALL_STATE(614)] = 18942, - [SMALL_STATE(615)] = 19000, - [SMALL_STATE(616)] = 19052, - [SMALL_STATE(617)] = 19100, - [SMALL_STATE(618)] = 19160, - [SMALL_STATE(619)] = 19211, - [SMALL_STATE(620)] = 19258, - [SMALL_STATE(621)] = 19305, - [SMALL_STATE(622)] = 19352, - [SMALL_STATE(623)] = 19399, - [SMALL_STATE(624)] = 19490, - [SMALL_STATE(625)] = 19581, - [SMALL_STATE(626)] = 19628, - [SMALL_STATE(627)] = 19675, - [SMALL_STATE(628)] = 19722, - [SMALL_STATE(629)] = 19769, - [SMALL_STATE(630)] = 19860, - [SMALL_STATE(631)] = 19907, - [SMALL_STATE(632)] = 19998, - [SMALL_STATE(633)] = 20049, - [SMALL_STATE(634)] = 20096, - [SMALL_STATE(635)] = 20143, - [SMALL_STATE(636)] = 20190, - [SMALL_STATE(637)] = 20237, - [SMALL_STATE(638)] = 20284, - [SMALL_STATE(639)] = 20335, - [SMALL_STATE(640)] = 20382, - [SMALL_STATE(641)] = 20429, - [SMALL_STATE(642)] = 20476, - [SMALL_STATE(643)] = 20527, - [SMALL_STATE(644)] = 20576, - [SMALL_STATE(645)] = 20623, - [SMALL_STATE(646)] = 20674, - [SMALL_STATE(647)] = 20725, - [SMALL_STATE(648)] = 20772, - [SMALL_STATE(649)] = 20819, - [SMALL_STATE(650)] = 20866, - [SMALL_STATE(651)] = 20917, - [SMALL_STATE(652)] = 20964, - [SMALL_STATE(653)] = 21015, - [SMALL_STATE(654)] = 21062, - [SMALL_STATE(655)] = 21109, - [SMALL_STATE(656)] = 21156, - [SMALL_STATE(657)] = 21207, - [SMALL_STATE(658)] = 21254, - [SMALL_STATE(659)] = 21301, - [SMALL_STATE(660)] = 21348, - [SMALL_STATE(661)] = 21395, - [SMALL_STATE(662)] = 21446, - [SMALL_STATE(663)] = 21493, - [SMALL_STATE(664)] = 21540, - [SMALL_STATE(665)] = 21587, - [SMALL_STATE(666)] = 21636, - [SMALL_STATE(667)] = 21727, - [SMALL_STATE(668)] = 21778, - [SMALL_STATE(669)] = 21829, - [SMALL_STATE(670)] = 21880, - [SMALL_STATE(671)] = 21927, - [SMALL_STATE(672)] = 21978, - [SMALL_STATE(673)] = 22025, - [SMALL_STATE(674)] = 22116, - [SMALL_STATE(675)] = 22163, - [SMALL_STATE(676)] = 22210, - [SMALL_STATE(677)] = 22257, - [SMALL_STATE(678)] = 22304, - [SMALL_STATE(679)] = 22351, - [SMALL_STATE(680)] = 22398, - [SMALL_STATE(681)] = 22445, - [SMALL_STATE(682)] = 22492, - [SMALL_STATE(683)] = 22541, - [SMALL_STATE(684)] = 22588, - [SMALL_STATE(685)] = 22679, - [SMALL_STATE(686)] = 22726, - [SMALL_STATE(687)] = 22817, - [SMALL_STATE(688)] = 22888, - [SMALL_STATE(689)] = 22935, - [SMALL_STATE(690)] = 23026, - [SMALL_STATE(691)] = 23117, - [SMALL_STATE(692)] = 23178, - [SMALL_STATE(693)] = 23269, - [SMALL_STATE(694)] = 23360, - [SMALL_STATE(695)] = 23451, - [SMALL_STATE(696)] = 23522, - [SMALL_STATE(697)] = 23583, - [SMALL_STATE(698)] = 23666, - [SMALL_STATE(699)] = 23749, - [SMALL_STATE(700)] = 23834, - [SMALL_STATE(701)] = 23901, - [SMALL_STATE(702)] = 23980, - [SMALL_STATE(703)] = 24061, - [SMALL_STATE(704)] = 24144, - [SMALL_STATE(705)] = 24209, - [SMALL_STATE(706)] = 24270, - [SMALL_STATE(707)] = 24345, - [SMALL_STATE(708)] = 24432, - [SMALL_STATE(709)] = 24523, - [SMALL_STATE(710)] = 24614, - [SMALL_STATE(711)] = 24699, - [SMALL_STATE(712)] = 24766, - [SMALL_STATE(713)] = 24857, - [SMALL_STATE(714)] = 24948, - [SMALL_STATE(715)] = 25039, - [SMALL_STATE(716)] = 25118, - [SMALL_STATE(717)] = 25199, - [SMALL_STATE(718)] = 25282, - [SMALL_STATE(719)] = 25373, - [SMALL_STATE(720)] = 25438, - [SMALL_STATE(721)] = 25499, - [SMALL_STATE(722)] = 25574, - [SMALL_STATE(723)] = 25661, - [SMALL_STATE(724)] = 25708, - [SMALL_STATE(725)] = 25755, - [SMALL_STATE(726)] = 25804, - [SMALL_STATE(727)] = 25851, - [SMALL_STATE(728)] = 25942, - [SMALL_STATE(729)] = 26033, - [SMALL_STATE(730)] = 26080, - [SMALL_STATE(731)] = 26171, - [SMALL_STATE(732)] = 26218, - [SMALL_STATE(733)] = 26309, - [SMALL_STATE(734)] = 26400, - [SMALL_STATE(735)] = 26494, - [SMALL_STATE(736)] = 26544, - [SMALL_STATE(737)] = 26636, - [SMALL_STATE(738)] = 26726, - [SMALL_STATE(739)] = 26820, - [SMALL_STATE(740)] = 26910, - [SMALL_STATE(741)] = 26962, - [SMALL_STATE(742)] = 27014, - [SMALL_STATE(743)] = 27066, - [SMALL_STATE(744)] = 27116, - [SMALL_STATE(745)] = 27168, - [SMALL_STATE(746)] = 27262, - [SMALL_STATE(747)] = 27356, - [SMALL_STATE(748)] = 27450, - [SMALL_STATE(749)] = 27544, - [SMALL_STATE(750)] = 27594, - [SMALL_STATE(751)] = 27687, - [SMALL_STATE(752)] = 27780, - [SMALL_STATE(753)] = 27873, - [SMALL_STATE(754)] = 27966, - [SMALL_STATE(755)] = 28059, - [SMALL_STATE(756)] = 28152, - [SMALL_STATE(757)] = 28245, - [SMALL_STATE(758)] = 28334, - [SMALL_STATE(759)] = 28423, - [SMALL_STATE(760)] = 28474, - [SMALL_STATE(761)] = 28567, - [SMALL_STATE(762)] = 28618, - [SMALL_STATE(763)] = 28669, - [SMALL_STATE(764)] = 28762, - [SMALL_STATE(765)] = 28851, - [SMALL_STATE(766)] = 28944, - [SMALL_STATE(767)] = 29037, - [SMALL_STATE(768)] = 29130, - [SMALL_STATE(769)] = 29223, - [SMALL_STATE(770)] = 29316, - [SMALL_STATE(771)] = 29409, - [SMALL_STATE(772)] = 29502, - [SMALL_STATE(773)] = 29595, - [SMALL_STATE(774)] = 29688, - [SMALL_STATE(775)] = 29781, - [SMALL_STATE(776)] = 29874, - [SMALL_STATE(777)] = 29967, - [SMALL_STATE(778)] = 30060, - [SMALL_STATE(779)] = 30153, - [SMALL_STATE(780)] = 30242, - [SMALL_STATE(781)] = 30335, - [SMALL_STATE(782)] = 30424, - [SMALL_STATE(783)] = 30513, - [SMALL_STATE(784)] = 30606, - [SMALL_STATE(785)] = 30699, - [SMALL_STATE(786)] = 30788, - [SMALL_STATE(787)] = 30877, - [SMALL_STATE(788)] = 30966, - [SMALL_STATE(789)] = 31059, - [SMALL_STATE(790)] = 31152, - [SMALL_STATE(791)] = 31221, - [SMALL_STATE(792)] = 31314, - [SMALL_STATE(793)] = 31373, - [SMALL_STATE(794)] = 31454, - [SMALL_STATE(795)] = 31537, - [SMALL_STATE(796)] = 31602, - [SMALL_STATE(797)] = 31691, - [SMALL_STATE(798)] = 31784, - [SMALL_STATE(799)] = 31861, - [SMALL_STATE(800)] = 31940, - [SMALL_STATE(801)] = 32021, - [SMALL_STATE(802)] = 32084, - [SMALL_STATE(803)] = 32143, - [SMALL_STATE(804)] = 32236, - [SMALL_STATE(805)] = 32309, - [SMALL_STATE(806)] = 32402, - [SMALL_STATE(807)] = 32487, - [SMALL_STATE(808)] = 32580, - [SMALL_STATE(809)] = 32669, - [SMALL_STATE(810)] = 32762, - [SMALL_STATE(811)] = 32851, - [SMALL_STATE(812)] = 32944, - [SMALL_STATE(813)] = 33037, - [SMALL_STATE(814)] = 33130, - [SMALL_STATE(815)] = 33219, - [SMALL_STATE(816)] = 33308, - [SMALL_STATE(817)] = 33359, - [SMALL_STATE(818)] = 33452, - [SMALL_STATE(819)] = 33541, - [SMALL_STATE(820)] = 33629, - [SMALL_STATE(821)] = 33675, - [SMALL_STATE(822)] = 33763, - [SMALL_STATE(823)] = 33809, - [SMALL_STATE(824)] = 33895, - [SMALL_STATE(825)] = 33981, - [SMALL_STATE(826)] = 34069, - [SMALL_STATE(827)] = 34155, - [SMALL_STATE(828)] = 34241, - [SMALL_STATE(829)] = 34327, - [SMALL_STATE(830)] = 34413, - [SMALL_STATE(831)] = 34463, - [SMALL_STATE(832)] = 34553, - [SMALL_STATE(833)] = 34641, - [SMALL_STATE(834)] = 34729, - [SMALL_STATE(835)] = 34817, - [SMALL_STATE(836)] = 34905, - [SMALL_STATE(837)] = 34993, - [SMALL_STATE(838)] = 35081, - [SMALL_STATE(839)] = 35169, - [SMALL_STATE(840)] = 35237, - [SMALL_STATE(841)] = 35295, - [SMALL_STATE(842)] = 35375, - [SMALL_STATE(843)] = 35457, - [SMALL_STATE(844)] = 35521, - [SMALL_STATE(845)] = 35597, - [SMALL_STATE(846)] = 35675, - [SMALL_STATE(847)] = 35755, - [SMALL_STATE(848)] = 35817, - [SMALL_STATE(849)] = 35875, - [SMALL_STATE(850)] = 35947, - [SMALL_STATE(851)] = 36031, - [SMALL_STATE(852)] = 36119, - [SMALL_STATE(853)] = 36207, - [SMALL_STATE(854)] = 36295, - [SMALL_STATE(855)] = 36383, - [SMALL_STATE(856)] = 36471, - [SMALL_STATE(857)] = 36559, - [SMALL_STATE(858)] = 36646, - [SMALL_STATE(859)] = 36733, - [SMALL_STATE(860)] = 36820, - [SMALL_STATE(861)] = 36907, - [SMALL_STATE(862)] = 36994, - [SMALL_STATE(863)] = 37081, - [SMALL_STATE(864)] = 37170, - [SMALL_STATE(865)] = 37257, - [SMALL_STATE(866)] = 37344, - [SMALL_STATE(867)] = 37422, - [SMALL_STATE(868)] = 37506, - [SMALL_STATE(869)] = 37590, - [SMALL_STATE(870)] = 37660, - [SMALL_STATE(871)] = 37731, - [SMALL_STATE(872)] = 37802, - [SMALL_STATE(873)] = 37873, - [SMALL_STATE(874)] = 37944, - [SMALL_STATE(875)] = 38015, - [SMALL_STATE(876)] = 38080, - [SMALL_STATE(877)] = 38151, - [SMALL_STATE(878)] = 38208, - [SMALL_STATE(879)] = 38265, - [SMALL_STATE(880)] = 38336, - [SMALL_STATE(881)] = 38388, - [SMALL_STATE(882)] = 38444, - [SMALL_STATE(883)] = 38502, - [SMALL_STATE(884)] = 38558, - [SMALL_STATE(885)] = 38616, - [SMALL_STATE(886)] = 38672, - [SMALL_STATE(887)] = 38730, - [SMALL_STATE(888)] = 38788, - [SMALL_STATE(889)] = 38846, - [SMALL_STATE(890)] = 38902, - [SMALL_STATE(891)] = 38960, - [SMALL_STATE(892)] = 39016, - [SMALL_STATE(893)] = 39072, - [SMALL_STATE(894)] = 39123, - [SMALL_STATE(895)] = 39174, - [SMALL_STATE(896)] = 39227, - [SMALL_STATE(897)] = 39278, - [SMALL_STATE(898)] = 39329, - [SMALL_STATE(899)] = 39380, - [SMALL_STATE(900)] = 39431, - [SMALL_STATE(901)] = 39481, - [SMALL_STATE(902)] = 39531, - [SMALL_STATE(903)] = 39583, - [SMALL_STATE(904)] = 39643, - [SMALL_STATE(905)] = 39691, - [SMALL_STATE(906)] = 39736, - [SMALL_STATE(907)] = 39779, - [SMALL_STATE(908)] = 39824, - [SMALL_STATE(909)] = 39867, - [SMALL_STATE(910)] = 39914, - [SMALL_STATE(911)] = 39969, - [SMALL_STATE(912)] = 40014, - [SMALL_STATE(913)] = 40057, - [SMALL_STATE(914)] = 40104, - [SMALL_STATE(915)] = 40149, - [SMALL_STATE(916)] = 40204, - [SMALL_STATE(917)] = 40242, - [SMALL_STATE(918)] = 40276, - [SMALL_STATE(919)] = 40314, - [SMALL_STATE(920)] = 40352, - [SMALL_STATE(921)] = 40390, - [SMALL_STATE(922)] = 40428, - [SMALL_STATE(923)] = 40468, - [SMALL_STATE(924)] = 40506, - [SMALL_STATE(925)] = 40533, - [SMALL_STATE(926)] = 40560, - [SMALL_STATE(927)] = 40587, - [SMALL_STATE(928)] = 40614, - [SMALL_STATE(929)] = 40641, - [SMALL_STATE(930)] = 40668, - [SMALL_STATE(931)] = 40695, - [SMALL_STATE(932)] = 40722, - [SMALL_STATE(933)] = 40749, - [SMALL_STATE(934)] = 40776, - [SMALL_STATE(935)] = 40803, - [SMALL_STATE(936)] = 40830, - [SMALL_STATE(937)] = 40857, - [SMALL_STATE(938)] = 40884, - [SMALL_STATE(939)] = 40911, - [SMALL_STATE(940)] = 40938, - [SMALL_STATE(941)] = 40965, - [SMALL_STATE(942)] = 40992, - [SMALL_STATE(943)] = 41019, - [SMALL_STATE(944)] = 41046, - [SMALL_STATE(945)] = 41079, - [SMALL_STATE(946)] = 41106, - [SMALL_STATE(947)] = 41133, - [SMALL_STATE(948)] = 41160, - [SMALL_STATE(949)] = 41189, - [SMALL_STATE(950)] = 41216, - [SMALL_STATE(951)] = 41243, - [SMALL_STATE(952)] = 41270, - [SMALL_STATE(953)] = 41297, - [SMALL_STATE(954)] = 41326, - [SMALL_STATE(955)] = 41353, - [SMALL_STATE(956)] = 41380, - [SMALL_STATE(957)] = 41406, - [SMALL_STATE(958)] = 41432, - [SMALL_STATE(959)] = 41460, - [SMALL_STATE(960)] = 41498, - [SMALL_STATE(961)] = 41540, - [SMALL_STATE(962)] = 41580, - [SMALL_STATE(963)] = 41606, - [SMALL_STATE(964)] = 41632, - [SMALL_STATE(965)] = 41678, - [SMALL_STATE(966)] = 41720, - [SMALL_STATE(967)] = 41764, - [SMALL_STATE(968)] = 41804, - [SMALL_STATE(969)] = 41846, - [SMALL_STATE(970)] = 41872, - [SMALL_STATE(971)] = 41914, - [SMALL_STATE(972)] = 41940, - [SMALL_STATE(973)] = 41975, - [SMALL_STATE(974)] = 42010, - [SMALL_STATE(975)] = 42045, - [SMALL_STATE(976)] = 42080, - [SMALL_STATE(977)] = 42105, - [SMALL_STATE(978)] = 42140, - [SMALL_STATE(979)] = 42181, - [SMALL_STATE(980)] = 42216, - [SMALL_STATE(981)] = 42255, - [SMALL_STATE(982)] = 42298, - [SMALL_STATE(983)] = 42333, - [SMALL_STATE(984)] = 42368, - [SMALL_STATE(985)] = 42409, - [SMALL_STATE(986)] = 42444, - [SMALL_STATE(987)] = 42479, - [SMALL_STATE(988)] = 42514, - [SMALL_STATE(989)] = 42553, - [SMALL_STATE(990)] = 42588, - [SMALL_STATE(991)] = 42623, - [SMALL_STATE(992)] = 42658, - [SMALL_STATE(993)] = 42693, - [SMALL_STATE(994)] = 42728, - [SMALL_STATE(995)] = 42763, - [SMALL_STATE(996)] = 42798, - [SMALL_STATE(997)] = 42833, - [SMALL_STATE(998)] = 42868, - [SMALL_STATE(999)] = 42903, - [SMALL_STATE(1000)] = 42938, - [SMALL_STATE(1001)] = 42963, - [SMALL_STATE(1002)] = 42988, - [SMALL_STATE(1003)] = 43013, - [SMALL_STATE(1004)] = 43056, - [SMALL_STATE(1005)] = 43081, - [SMALL_STATE(1006)] = 43116, - [SMALL_STATE(1007)] = 43141, - [SMALL_STATE(1008)] = 43176, - [SMALL_STATE(1009)] = 43208, - [SMALL_STATE(1010)] = 43240, - [SMALL_STATE(1011)] = 43272, - [SMALL_STATE(1012)] = 43304, - [SMALL_STATE(1013)] = 43336, - [SMALL_STATE(1014)] = 43368, - [SMALL_STATE(1015)] = 43400, - [SMALL_STATE(1016)] = 43422, - [SMALL_STATE(1017)] = 43454, - [SMALL_STATE(1018)] = 43486, - [SMALL_STATE(1019)] = 43508, - [SMALL_STATE(1020)] = 43530, - [SMALL_STATE(1021)] = 43562, - [SMALL_STATE(1022)] = 43594, - [SMALL_STATE(1023)] = 43626, - [SMALL_STATE(1024)] = 43648, - [SMALL_STATE(1025)] = 43680, - [SMALL_STATE(1026)] = 43712, - [SMALL_STATE(1027)] = 43744, - [SMALL_STATE(1028)] = 43776, - [SMALL_STATE(1029)] = 43808, - [SMALL_STATE(1030)] = 43830, - [SMALL_STATE(1031)] = 43862, - [SMALL_STATE(1032)] = 43899, - [SMALL_STATE(1033)] = 43929, - [SMALL_STATE(1034)] = 43959, - [SMALL_STATE(1035)] = 43995, - [SMALL_STATE(1036)] = 44025, - [SMALL_STATE(1037)] = 44061, - [SMALL_STATE(1038)] = 44091, - [SMALL_STATE(1039)] = 44121, - [SMALL_STATE(1040)] = 44151, - [SMALL_STATE(1041)] = 44187, - [SMALL_STATE(1042)] = 44217, - [SMALL_STATE(1043)] = 44253, - [SMALL_STATE(1044)] = 44283, - [SMALL_STATE(1045)] = 44316, - [SMALL_STATE(1046)] = 44343, - [SMALL_STATE(1047)] = 44376, - [SMALL_STATE(1048)] = 44409, - [SMALL_STATE(1049)] = 44442, - [SMALL_STATE(1050)] = 44475, - [SMALL_STATE(1051)] = 44508, - [SMALL_STATE(1052)] = 44541, - [SMALL_STATE(1053)] = 44574, - [SMALL_STATE(1054)] = 44600, - [SMALL_STATE(1055)] = 44630, - [SMALL_STATE(1056)] = 44660, - [SMALL_STATE(1057)] = 44686, - [SMALL_STATE(1058)] = 44716, - [SMALL_STATE(1059)] = 44746, - [SMALL_STATE(1060)] = 44776, - [SMALL_STATE(1061)] = 44806, - [SMALL_STATE(1062)] = 44836, - [SMALL_STATE(1063)] = 44866, - [SMALL_STATE(1064)] = 44896, - [SMALL_STATE(1065)] = 44926, - [SMALL_STATE(1066)] = 44956, - [SMALL_STATE(1067)] = 44986, - [SMALL_STATE(1068)] = 45016, - [SMALL_STATE(1069)] = 45046, - [SMALL_STATE(1070)] = 45076, - [SMALL_STATE(1071)] = 45104, - [SMALL_STATE(1072)] = 45134, - [SMALL_STATE(1073)] = 45164, - [SMALL_STATE(1074)] = 45194, - [SMALL_STATE(1075)] = 45224, - [SMALL_STATE(1076)] = 45254, - [SMALL_STATE(1077)] = 45281, - [SMALL_STATE(1078)] = 45308, - [SMALL_STATE(1079)] = 45326, - [SMALL_STATE(1080)] = 45348, - [SMALL_STATE(1081)] = 45370, - [SMALL_STATE(1082)] = 45392, - [SMALL_STATE(1083)] = 45416, - [SMALL_STATE(1084)] = 45440, - [SMALL_STATE(1085)] = 45464, - [SMALL_STATE(1086)] = 45488, - [SMALL_STATE(1087)] = 45506, - [SMALL_STATE(1088)] = 45530, - [SMALL_STATE(1089)] = 45544, - [SMALL_STATE(1090)] = 45558, - [SMALL_STATE(1091)] = 45582, - [SMALL_STATE(1092)] = 45606, - [SMALL_STATE(1093)] = 45626, - [SMALL_STATE(1094)] = 45640, - [SMALL_STATE(1095)] = 45660, - [SMALL_STATE(1096)] = 45682, - [SMALL_STATE(1097)] = 45706, - [SMALL_STATE(1098)] = 45730, - [SMALL_STATE(1099)] = 45752, - [SMALL_STATE(1100)] = 45774, - [SMALL_STATE(1101)] = 45788, - [SMALL_STATE(1102)] = 45812, - [SMALL_STATE(1103)] = 45826, - [SMALL_STATE(1104)] = 45845, - [SMALL_STATE(1105)] = 45864, - [SMALL_STATE(1106)] = 45879, - [SMALL_STATE(1107)] = 45898, - [SMALL_STATE(1108)] = 45919, - [SMALL_STATE(1109)] = 45938, - [SMALL_STATE(1110)] = 45959, - [SMALL_STATE(1111)] = 45972, - [SMALL_STATE(1112)] = 45993, - [SMALL_STATE(1113)] = 46006, - [SMALL_STATE(1114)] = 46025, - [SMALL_STATE(1115)] = 46046, - [SMALL_STATE(1116)] = 46065, - [SMALL_STATE(1117)] = 46078, - [SMALL_STATE(1118)] = 46097, - [SMALL_STATE(1119)] = 46110, - [SMALL_STATE(1120)] = 46127, - [SMALL_STATE(1121)] = 46140, - [SMALL_STATE(1122)] = 46153, - [SMALL_STATE(1123)] = 46172, - [SMALL_STATE(1124)] = 46191, - [SMALL_STATE(1125)] = 46206, - [SMALL_STATE(1126)] = 46227, - [SMALL_STATE(1127)] = 46240, - [SMALL_STATE(1128)] = 46253, - [SMALL_STATE(1129)] = 46266, - [SMALL_STATE(1130)] = 46279, - [SMALL_STATE(1131)] = 46300, - [SMALL_STATE(1132)] = 46319, - [SMALL_STATE(1133)] = 46338, - [SMALL_STATE(1134)] = 46356, - [SMALL_STATE(1135)] = 46370, - [SMALL_STATE(1136)] = 46384, - [SMALL_STATE(1137)] = 46398, - [SMALL_STATE(1138)] = 46418, - [SMALL_STATE(1139)] = 46430, - [SMALL_STATE(1140)] = 46450, - [SMALL_STATE(1141)] = 46464, - [SMALL_STATE(1142)] = 46484, - [SMALL_STATE(1143)] = 46504, - [SMALL_STATE(1144)] = 46518, - [SMALL_STATE(1145)] = 46538, - [SMALL_STATE(1146)] = 46558, - [SMALL_STATE(1147)] = 46572, - [SMALL_STATE(1148)] = 46586, - [SMALL_STATE(1149)] = 46606, - [SMALL_STATE(1150)] = 46620, - [SMALL_STATE(1151)] = 46634, - [SMALL_STATE(1152)] = 46654, - [SMALL_STATE(1153)] = 46668, - [SMALL_STATE(1154)] = 46688, - [SMALL_STATE(1155)] = 46702, - [SMALL_STATE(1156)] = 46716, - [SMALL_STATE(1157)] = 46736, - [SMALL_STATE(1158)] = 46750, - [SMALL_STATE(1159)] = 46770, - [SMALL_STATE(1160)] = 46784, - [SMALL_STATE(1161)] = 46800, - [SMALL_STATE(1162)] = 46820, - [SMALL_STATE(1163)] = 46834, - [SMALL_STATE(1164)] = 46848, - [SMALL_STATE(1165)] = 46868, - [SMALL_STATE(1166)] = 46882, - [SMALL_STATE(1167)] = 46902, - [SMALL_STATE(1168)] = 46914, - [SMALL_STATE(1169)] = 46928, - [SMALL_STATE(1170)] = 46948, - [SMALL_STATE(1171)] = 46968, - [SMALL_STATE(1172)] = 46986, - [SMALL_STATE(1173)] = 47000, - [SMALL_STATE(1174)] = 47014, - [SMALL_STATE(1175)] = 47034, - [SMALL_STATE(1176)] = 47048, - [SMALL_STATE(1177)] = 47066, - [SMALL_STATE(1178)] = 47080, - [SMALL_STATE(1179)] = 47094, - [SMALL_STATE(1180)] = 47108, - [SMALL_STATE(1181)] = 47122, - [SMALL_STATE(1182)] = 47136, - [SMALL_STATE(1183)] = 47150, - [SMALL_STATE(1184)] = 47164, - [SMALL_STATE(1185)] = 47178, - [SMALL_STATE(1186)] = 47198, - [SMALL_STATE(1187)] = 47212, - [SMALL_STATE(1188)] = 47232, - [SMALL_STATE(1189)] = 47252, - [SMALL_STATE(1190)] = 47266, - [SMALL_STATE(1191)] = 47286, - [SMALL_STATE(1192)] = 47302, - [SMALL_STATE(1193)] = 47316, - [SMALL_STATE(1194)] = 47330, - [SMALL_STATE(1195)] = 47346, - [SMALL_STATE(1196)] = 47360, - [SMALL_STATE(1197)] = 47372, - [SMALL_STATE(1198)] = 47392, - [SMALL_STATE(1199)] = 47406, - [SMALL_STATE(1200)] = 47420, - [SMALL_STATE(1201)] = 47437, - [SMALL_STATE(1202)] = 47454, - [SMALL_STATE(1203)] = 47469, - [SMALL_STATE(1204)] = 47486, - [SMALL_STATE(1205)] = 47503, - [SMALL_STATE(1206)] = 47522, - [SMALL_STATE(1207)] = 47539, - [SMALL_STATE(1208)] = 47556, - [SMALL_STATE(1209)] = 47573, - [SMALL_STATE(1210)] = 47592, - [SMALL_STATE(1211)] = 47609, - [SMALL_STATE(1212)] = 47624, - [SMALL_STATE(1213)] = 47641, - [SMALL_STATE(1214)] = 47660, - [SMALL_STATE(1215)] = 47677, - [SMALL_STATE(1216)] = 47688, - [SMALL_STATE(1217)] = 47699, - [SMALL_STATE(1218)] = 47716, - [SMALL_STATE(1219)] = 47735, - [SMALL_STATE(1220)] = 47748, - [SMALL_STATE(1221)] = 47765, - [SMALL_STATE(1222)] = 47780, - [SMALL_STATE(1223)] = 47797, - [SMALL_STATE(1224)] = 47812, - [SMALL_STATE(1225)] = 47829, - [SMALL_STATE(1226)] = 47846, - [SMALL_STATE(1227)] = 47863, - [SMALL_STATE(1228)] = 47880, - [SMALL_STATE(1229)] = 47897, - [SMALL_STATE(1230)] = 47914, - [SMALL_STATE(1231)] = 47931, - [SMALL_STATE(1232)] = 47946, - [SMALL_STATE(1233)] = 47963, - [SMALL_STATE(1234)] = 47980, - [SMALL_STATE(1235)] = 47997, - [SMALL_STATE(1236)] = 48014, - [SMALL_STATE(1237)] = 48031, - [SMALL_STATE(1238)] = 48048, - [SMALL_STATE(1239)] = 48061, - [SMALL_STATE(1240)] = 48078, - [SMALL_STATE(1241)] = 48089, - [SMALL_STATE(1242)] = 48106, - [SMALL_STATE(1243)] = 48121, - [SMALL_STATE(1244)] = 48138, - [SMALL_STATE(1245)] = 48155, - [SMALL_STATE(1246)] = 48172, - [SMALL_STATE(1247)] = 48189, - [SMALL_STATE(1248)] = 48206, - [SMALL_STATE(1249)] = 48221, - [SMALL_STATE(1250)] = 48238, - [SMALL_STATE(1251)] = 48255, - [SMALL_STATE(1252)] = 48270, - [SMALL_STATE(1253)] = 48287, - [SMALL_STATE(1254)] = 48304, - [SMALL_STATE(1255)] = 48321, - [SMALL_STATE(1256)] = 48336, - [SMALL_STATE(1257)] = 48347, - [SMALL_STATE(1258)] = 48362, - [SMALL_STATE(1259)] = 48379, - [SMALL_STATE(1260)] = 48396, - [SMALL_STATE(1261)] = 48411, - [SMALL_STATE(1262)] = 48428, - [SMALL_STATE(1263)] = 48445, - [SMALL_STATE(1264)] = 48464, - [SMALL_STATE(1265)] = 48483, - [SMALL_STATE(1266)] = 48494, - [SMALL_STATE(1267)] = 48511, - [SMALL_STATE(1268)] = 48528, - [SMALL_STATE(1269)] = 48543, - [SMALL_STATE(1270)] = 48560, - [SMALL_STATE(1271)] = 48571, - [SMALL_STATE(1272)] = 48586, - [SMALL_STATE(1273)] = 48603, - [SMALL_STATE(1274)] = 48620, - [SMALL_STATE(1275)] = 48634, - [SMALL_STATE(1276)] = 48648, - [SMALL_STATE(1277)] = 48662, - [SMALL_STATE(1278)] = 48676, - [SMALL_STATE(1279)] = 48690, - [SMALL_STATE(1280)] = 48700, - [SMALL_STATE(1281)] = 48712, - [SMALL_STATE(1282)] = 48726, - [SMALL_STATE(1283)] = 48738, - [SMALL_STATE(1284)] = 48752, - [SMALL_STATE(1285)] = 48766, - [SMALL_STATE(1286)] = 48780, - [SMALL_STATE(1287)] = 48794, - [SMALL_STATE(1288)] = 48808, - [SMALL_STATE(1289)] = 48822, - [SMALL_STATE(1290)] = 48836, - [SMALL_STATE(1291)] = 48850, - [SMALL_STATE(1292)] = 48864, - [SMALL_STATE(1293)] = 48878, - [SMALL_STATE(1294)] = 48888, - [SMALL_STATE(1295)] = 48900, - [SMALL_STATE(1296)] = 48914, - [SMALL_STATE(1297)] = 48928, - [SMALL_STATE(1298)] = 48942, - [SMALL_STATE(1299)] = 48954, - [SMALL_STATE(1300)] = 48968, - [SMALL_STATE(1301)] = 48980, - [SMALL_STATE(1302)] = 48994, - [SMALL_STATE(1303)] = 49006, - [SMALL_STATE(1304)] = 49020, - [SMALL_STATE(1305)] = 49034, - [SMALL_STATE(1306)] = 49048, - [SMALL_STATE(1307)] = 49062, - [SMALL_STATE(1308)] = 49076, - [SMALL_STATE(1309)] = 49086, - [SMALL_STATE(1310)] = 49100, - [SMALL_STATE(1311)] = 49114, - [SMALL_STATE(1312)] = 49128, - [SMALL_STATE(1313)] = 49142, - [SMALL_STATE(1314)] = 49154, - [SMALL_STATE(1315)] = 49168, - [SMALL_STATE(1316)] = 49182, - [SMALL_STATE(1317)] = 49196, - [SMALL_STATE(1318)] = 49210, - [SMALL_STATE(1319)] = 49220, - [SMALL_STATE(1320)] = 49234, - [SMALL_STATE(1321)] = 49248, - [SMALL_STATE(1322)] = 49262, - [SMALL_STATE(1323)] = 49276, - [SMALL_STATE(1324)] = 49290, - [SMALL_STATE(1325)] = 49304, - [SMALL_STATE(1326)] = 49316, - [SMALL_STATE(1327)] = 49330, - [SMALL_STATE(1328)] = 49340, - [SMALL_STATE(1329)] = 49354, - [SMALL_STATE(1330)] = 49366, - [SMALL_STATE(1331)] = 49380, - [SMALL_STATE(1332)] = 49390, - [SMALL_STATE(1333)] = 49404, - [SMALL_STATE(1334)] = 49418, - [SMALL_STATE(1335)] = 49432, - [SMALL_STATE(1336)] = 49446, - [SMALL_STATE(1337)] = 49460, - [SMALL_STATE(1338)] = 49472, - [SMALL_STATE(1339)] = 49486, - [SMALL_STATE(1340)] = 49500, - [SMALL_STATE(1341)] = 49512, - [SMALL_STATE(1342)] = 49526, - [SMALL_STATE(1343)] = 49538, - [SMALL_STATE(1344)] = 49552, - [SMALL_STATE(1345)] = 49566, - [SMALL_STATE(1346)] = 49580, - [SMALL_STATE(1347)] = 49594, - [SMALL_STATE(1348)] = 49608, - [SMALL_STATE(1349)] = 49622, - [SMALL_STATE(1350)] = 49636, - [SMALL_STATE(1351)] = 49650, - [SMALL_STATE(1352)] = 49664, - [SMALL_STATE(1353)] = 49678, - [SMALL_STATE(1354)] = 49692, - [SMALL_STATE(1355)] = 49706, - [SMALL_STATE(1356)] = 49720, - [SMALL_STATE(1357)] = 49734, - [SMALL_STATE(1358)] = 49746, - [SMALL_STATE(1359)] = 49760, - [SMALL_STATE(1360)] = 49770, - [SMALL_STATE(1361)] = 49780, - [SMALL_STATE(1362)] = 49794, - [SMALL_STATE(1363)] = 49808, - [SMALL_STATE(1364)] = 49822, - [SMALL_STATE(1365)] = 49836, - [SMALL_STATE(1366)] = 49850, - [SMALL_STATE(1367)] = 49864, - [SMALL_STATE(1368)] = 49878, - [SMALL_STATE(1369)] = 49892, - [SMALL_STATE(1370)] = 49906, - [SMALL_STATE(1371)] = 49920, - [SMALL_STATE(1372)] = 49931, - [SMALL_STATE(1373)] = 49942, - [SMALL_STATE(1374)] = 49953, - [SMALL_STATE(1375)] = 49964, - [SMALL_STATE(1376)] = 49975, - [SMALL_STATE(1377)] = 49986, - [SMALL_STATE(1378)] = 49997, - [SMALL_STATE(1379)] = 50008, - [SMALL_STATE(1380)] = 50017, - [SMALL_STATE(1381)] = 50028, - [SMALL_STATE(1382)] = 50037, - [SMALL_STATE(1383)] = 50046, - [SMALL_STATE(1384)] = 50055, - [SMALL_STATE(1385)] = 50066, - [SMALL_STATE(1386)] = 50077, - [SMALL_STATE(1387)] = 50088, - [SMALL_STATE(1388)] = 50099, - [SMALL_STATE(1389)] = 50110, - [SMALL_STATE(1390)] = 50121, - [SMALL_STATE(1391)] = 50132, - [SMALL_STATE(1392)] = 50143, - [SMALL_STATE(1393)] = 50154, - [SMALL_STATE(1394)] = 50165, - [SMALL_STATE(1395)] = 50176, - [SMALL_STATE(1396)] = 50187, - [SMALL_STATE(1397)] = 50198, - [SMALL_STATE(1398)] = 50207, - [SMALL_STATE(1399)] = 50218, - [SMALL_STATE(1400)] = 50227, - [SMALL_STATE(1401)] = 50238, - [SMALL_STATE(1402)] = 50247, - [SMALL_STATE(1403)] = 50258, - [SMALL_STATE(1404)] = 50269, - [SMALL_STATE(1405)] = 50280, - [SMALL_STATE(1406)] = 50291, - [SMALL_STATE(1407)] = 50300, - [SMALL_STATE(1408)] = 50309, - [SMALL_STATE(1409)] = 50320, - [SMALL_STATE(1410)] = 50331, - [SMALL_STATE(1411)] = 50342, - [SMALL_STATE(1412)] = 50353, - [SMALL_STATE(1413)] = 50364, - [SMALL_STATE(1414)] = 50375, - [SMALL_STATE(1415)] = 50386, - [SMALL_STATE(1416)] = 50397, - [SMALL_STATE(1417)] = 50408, - [SMALL_STATE(1418)] = 50419, - [SMALL_STATE(1419)] = 50430, - [SMALL_STATE(1420)] = 50441, - [SMALL_STATE(1421)] = 50452, - [SMALL_STATE(1422)] = 50461, - [SMALL_STATE(1423)] = 50472, - [SMALL_STATE(1424)] = 50481, - [SMALL_STATE(1425)] = 50492, - [SMALL_STATE(1426)] = 50503, - [SMALL_STATE(1427)] = 50514, - [SMALL_STATE(1428)] = 50525, - [SMALL_STATE(1429)] = 50536, - [SMALL_STATE(1430)] = 50545, - [SMALL_STATE(1431)] = 50554, - [SMALL_STATE(1432)] = 50565, - [SMALL_STATE(1433)] = 50576, - [SMALL_STATE(1434)] = 50587, - [SMALL_STATE(1435)] = 50598, - [SMALL_STATE(1436)] = 50607, - [SMALL_STATE(1437)] = 50618, - [SMALL_STATE(1438)] = 50629, - [SMALL_STATE(1439)] = 50640, - [SMALL_STATE(1440)] = 50651, - [SMALL_STATE(1441)] = 50662, - [SMALL_STATE(1442)] = 50673, - [SMALL_STATE(1443)] = 50684, - [SMALL_STATE(1444)] = 50695, - [SMALL_STATE(1445)] = 50706, - [SMALL_STATE(1446)] = 50717, - [SMALL_STATE(1447)] = 50728, - [SMALL_STATE(1448)] = 50737, - [SMALL_STATE(1449)] = 50746, - [SMALL_STATE(1450)] = 50757, - [SMALL_STATE(1451)] = 50768, - [SMALL_STATE(1452)] = 50777, - [SMALL_STATE(1453)] = 50788, - [SMALL_STATE(1454)] = 50797, - [SMALL_STATE(1455)] = 50806, - [SMALL_STATE(1456)] = 50815, - [SMALL_STATE(1457)] = 50826, - [SMALL_STATE(1458)] = 50837, - [SMALL_STATE(1459)] = 50848, - [SMALL_STATE(1460)] = 50859, - [SMALL_STATE(1461)] = 50870, - [SMALL_STATE(1462)] = 50879, - [SMALL_STATE(1463)] = 50890, - [SMALL_STATE(1464)] = 50901, - [SMALL_STATE(1465)] = 50912, - [SMALL_STATE(1466)] = 50923, - [SMALL_STATE(1467)] = 50934, - [SMALL_STATE(1468)] = 50945, - [SMALL_STATE(1469)] = 50954, - [SMALL_STATE(1470)] = 50965, - [SMALL_STATE(1471)] = 50976, - [SMALL_STATE(1472)] = 50987, - [SMALL_STATE(1473)] = 50998, - [SMALL_STATE(1474)] = 51009, - [SMALL_STATE(1475)] = 51020, - [SMALL_STATE(1476)] = 51031, - [SMALL_STATE(1477)] = 51040, - [SMALL_STATE(1478)] = 51051, - [SMALL_STATE(1479)] = 51062, - [SMALL_STATE(1480)] = 51071, - [SMALL_STATE(1481)] = 51082, - [SMALL_STATE(1482)] = 51093, - [SMALL_STATE(1483)] = 51104, - [SMALL_STATE(1484)] = 51113, - [SMALL_STATE(1485)] = 51124, - [SMALL_STATE(1486)] = 51135, - [SMALL_STATE(1487)] = 51146, - [SMALL_STATE(1488)] = 51157, - [SMALL_STATE(1489)] = 51168, - [SMALL_STATE(1490)] = 51179, - [SMALL_STATE(1491)] = 51188, - [SMALL_STATE(1492)] = 51197, - [SMALL_STATE(1493)] = 51208, - [SMALL_STATE(1494)] = 51219, - [SMALL_STATE(1495)] = 51230, - [SMALL_STATE(1496)] = 51241, - [SMALL_STATE(1497)] = 51252, - [SMALL_STATE(1498)] = 51263, - [SMALL_STATE(1499)] = 51274, - [SMALL_STATE(1500)] = 51285, - [SMALL_STATE(1501)] = 51296, - [SMALL_STATE(1502)] = 51307, - [SMALL_STATE(1503)] = 51318, - [SMALL_STATE(1504)] = 51329, - [SMALL_STATE(1505)] = 51340, - [SMALL_STATE(1506)] = 51351, - [SMALL_STATE(1507)] = 51362, - [SMALL_STATE(1508)] = 51373, - [SMALL_STATE(1509)] = 51384, - [SMALL_STATE(1510)] = 51395, - [SMALL_STATE(1511)] = 51406, - [SMALL_STATE(1512)] = 51417, - [SMALL_STATE(1513)] = 51428, - [SMALL_STATE(1514)] = 51439, - [SMALL_STATE(1515)] = 51450, - [SMALL_STATE(1516)] = 51461, - [SMALL_STATE(1517)] = 51472, - [SMALL_STATE(1518)] = 51483, - [SMALL_STATE(1519)] = 51494, - [SMALL_STATE(1520)] = 51505, - [SMALL_STATE(1521)] = 51516, - [SMALL_STATE(1522)] = 51527, - [SMALL_STATE(1523)] = 51538, - [SMALL_STATE(1524)] = 51549, - [SMALL_STATE(1525)] = 51560, - [SMALL_STATE(1526)] = 51571, - [SMALL_STATE(1527)] = 51582, - [SMALL_STATE(1528)] = 51593, - [SMALL_STATE(1529)] = 51604, - [SMALL_STATE(1530)] = 51615, - [SMALL_STATE(1531)] = 51626, - [SMALL_STATE(1532)] = 51637, - [SMALL_STATE(1533)] = 51648, - [SMALL_STATE(1534)] = 51659, - [SMALL_STATE(1535)] = 51670, - [SMALL_STATE(1536)] = 51681, - [SMALL_STATE(1537)] = 51692, - [SMALL_STATE(1538)] = 51703, - [SMALL_STATE(1539)] = 51714, - [SMALL_STATE(1540)] = 51725, - [SMALL_STATE(1541)] = 51736, - [SMALL_STATE(1542)] = 51747, - [SMALL_STATE(1543)] = 51758, - [SMALL_STATE(1544)] = 51769, - [SMALL_STATE(1545)] = 51780, - [SMALL_STATE(1546)] = 51791, - [SMALL_STATE(1547)] = 51802, - [SMALL_STATE(1548)] = 51813, - [SMALL_STATE(1549)] = 51824, - [SMALL_STATE(1550)] = 51833, - [SMALL_STATE(1551)] = 51844, - [SMALL_STATE(1552)] = 51855, - [SMALL_STATE(1553)] = 51866, - [SMALL_STATE(1554)] = 51877, - [SMALL_STATE(1555)] = 51888, - [SMALL_STATE(1556)] = 51899, - [SMALL_STATE(1557)] = 51910, - [SMALL_STATE(1558)] = 51921, - [SMALL_STATE(1559)] = 51932, - [SMALL_STATE(1560)] = 51941, - [SMALL_STATE(1561)] = 51952, - [SMALL_STATE(1562)] = 51961, - [SMALL_STATE(1563)] = 51970, - [SMALL_STATE(1564)] = 51981, - [SMALL_STATE(1565)] = 51992, - [SMALL_STATE(1566)] = 52003, - [SMALL_STATE(1567)] = 52014, - [SMALL_STATE(1568)] = 52025, - [SMALL_STATE(1569)] = 52034, - [SMALL_STATE(1570)] = 52045, - [SMALL_STATE(1571)] = 52054, - [SMALL_STATE(1572)] = 52065, - [SMALL_STATE(1573)] = 52076, - [SMALL_STATE(1574)] = 52087, - [SMALL_STATE(1575)] = 52098, - [SMALL_STATE(1576)] = 52109, - [SMALL_STATE(1577)] = 52120, - [SMALL_STATE(1578)] = 52131, - [SMALL_STATE(1579)] = 52142, - [SMALL_STATE(1580)] = 52153, - [SMALL_STATE(1581)] = 52164, - [SMALL_STATE(1582)] = 52175, - [SMALL_STATE(1583)] = 52186, - [SMALL_STATE(1584)] = 52197, - [SMALL_STATE(1585)] = 52208, - [SMALL_STATE(1586)] = 52219, - [SMALL_STATE(1587)] = 52230, - [SMALL_STATE(1588)] = 52241, - [SMALL_STATE(1589)] = 52252, - [SMALL_STATE(1590)] = 52263, - [SMALL_STATE(1591)] = 52274, - [SMALL_STATE(1592)] = 52285, - [SMALL_STATE(1593)] = 52296, - [SMALL_STATE(1594)] = 52307, - [SMALL_STATE(1595)] = 52318, - [SMALL_STATE(1596)] = 52329, - [SMALL_STATE(1597)] = 52340, - [SMALL_STATE(1598)] = 52351, - [SMALL_STATE(1599)] = 52362, - [SMALL_STATE(1600)] = 52373, - [SMALL_STATE(1601)] = 52384, - [SMALL_STATE(1602)] = 52395, - [SMALL_STATE(1603)] = 52406, - [SMALL_STATE(1604)] = 52417, - [SMALL_STATE(1605)] = 52428, - [SMALL_STATE(1606)] = 52439, - [SMALL_STATE(1607)] = 52450, - [SMALL_STATE(1608)] = 52461, - [SMALL_STATE(1609)] = 52472, - [SMALL_STATE(1610)] = 52483, - [SMALL_STATE(1611)] = 52494, - [SMALL_STATE(1612)] = 52505, - [SMALL_STATE(1613)] = 52516, - [SMALL_STATE(1614)] = 52527, - [SMALL_STATE(1615)] = 52538, - [SMALL_STATE(1616)] = 52546, - [SMALL_STATE(1617)] = 52554, - [SMALL_STATE(1618)] = 52562, - [SMALL_STATE(1619)] = 52570, - [SMALL_STATE(1620)] = 52578, - [SMALL_STATE(1621)] = 52586, - [SMALL_STATE(1622)] = 52594, - [SMALL_STATE(1623)] = 52604, - [SMALL_STATE(1624)] = 52612, - [SMALL_STATE(1625)] = 52620, - [SMALL_STATE(1626)] = 52628, - [SMALL_STATE(1627)] = 52636, - [SMALL_STATE(1628)] = 52644, - [SMALL_STATE(1629)] = 52652, - [SMALL_STATE(1630)] = 52660, - [SMALL_STATE(1631)] = 52670, - [SMALL_STATE(1632)] = 52678, - [SMALL_STATE(1633)] = 52686, - [SMALL_STATE(1634)] = 52694, - [SMALL_STATE(1635)] = 52702, - [SMALL_STATE(1636)] = 52712, - [SMALL_STATE(1637)] = 52722, - [SMALL_STATE(1638)] = 52730, - [SMALL_STATE(1639)] = 52738, - [SMALL_STATE(1640)] = 52746, - [SMALL_STATE(1641)] = 52754, - [SMALL_STATE(1642)] = 52762, - [SMALL_STATE(1643)] = 52770, - [SMALL_STATE(1644)] = 52778, - [SMALL_STATE(1645)] = 52786, - [SMALL_STATE(1646)] = 52794, - [SMALL_STATE(1647)] = 52802, - [SMALL_STATE(1648)] = 52810, - [SMALL_STATE(1649)] = 52818, - [SMALL_STATE(1650)] = 52826, - [SMALL_STATE(1651)] = 52834, - [SMALL_STATE(1652)] = 52842, - [SMALL_STATE(1653)] = 52850, - [SMALL_STATE(1654)] = 52858, - [SMALL_STATE(1655)] = 52866, - [SMALL_STATE(1656)] = 52874, - [SMALL_STATE(1657)] = 52882, - [SMALL_STATE(1658)] = 52890, - [SMALL_STATE(1659)] = 52898, - [SMALL_STATE(1660)] = 52906, - [SMALL_STATE(1661)] = 52914, - [SMALL_STATE(1662)] = 52922, - [SMALL_STATE(1663)] = 52930, - [SMALL_STATE(1664)] = 52938, - [SMALL_STATE(1665)] = 52946, - [SMALL_STATE(1666)] = 52954, - [SMALL_STATE(1667)] = 52962, - [SMALL_STATE(1668)] = 52970, - [SMALL_STATE(1669)] = 52978, - [SMALL_STATE(1670)] = 52986, - [SMALL_STATE(1671)] = 52994, - [SMALL_STATE(1672)] = 53002, - [SMALL_STATE(1673)] = 53010, - [SMALL_STATE(1674)] = 53018, - [SMALL_STATE(1675)] = 53026, - [SMALL_STATE(1676)] = 53034, - [SMALL_STATE(1677)] = 53042, - [SMALL_STATE(1678)] = 53050, - [SMALL_STATE(1679)] = 53058, - [SMALL_STATE(1680)] = 53066, - [SMALL_STATE(1681)] = 53074, - [SMALL_STATE(1682)] = 53082, - [SMALL_STATE(1683)] = 53090, - [SMALL_STATE(1684)] = 53098, - [SMALL_STATE(1685)] = 53106, - [SMALL_STATE(1686)] = 53114, - [SMALL_STATE(1687)] = 53122, - [SMALL_STATE(1688)] = 53130, - [SMALL_STATE(1689)] = 53140, - [SMALL_STATE(1690)] = 53148, - [SMALL_STATE(1691)] = 53156, - [SMALL_STATE(1692)] = 53164, - [SMALL_STATE(1693)] = 53174, - [SMALL_STATE(1694)] = 53182, - [SMALL_STATE(1695)] = 53190, - [SMALL_STATE(1696)] = 53198, - [SMALL_STATE(1697)] = 53206, - [SMALL_STATE(1698)] = 53214, - [SMALL_STATE(1699)] = 53224, - [SMALL_STATE(1700)] = 53232, - [SMALL_STATE(1701)] = 53240, - [SMALL_STATE(1702)] = 53248, - [SMALL_STATE(1703)] = 53256, - [SMALL_STATE(1704)] = 53264, - [SMALL_STATE(1705)] = 53272, - [SMALL_STATE(1706)] = 53280, - [SMALL_STATE(1707)] = 53288, - [SMALL_STATE(1708)] = 53296, - [SMALL_STATE(1709)] = 53304, - [SMALL_STATE(1710)] = 53312, - [SMALL_STATE(1711)] = 53320, - [SMALL_STATE(1712)] = 53328, - [SMALL_STATE(1713)] = 53336, - [SMALL_STATE(1714)] = 53344, - [SMALL_STATE(1715)] = 53354, - [SMALL_STATE(1716)] = 53362, - [SMALL_STATE(1717)] = 53370, - [SMALL_STATE(1718)] = 53378, - [SMALL_STATE(1719)] = 53386, - [SMALL_STATE(1720)] = 53394, - [SMALL_STATE(1721)] = 53402, + [SMALL_STATE(387)] = 0, + [SMALL_STATE(388)] = 91, + [SMALL_STATE(389)] = 178, + [SMALL_STATE(390)] = 253, + [SMALL_STATE(391)] = 340, + [SMALL_STATE(392)] = 410, + [SMALL_STATE(393)] = 482, + [SMALL_STATE(394)] = 568, + [SMALL_STATE(395)] = 640, + [SMALL_STATE(396)] = 712, + [SMALL_STATE(397)] = 802, + [SMALL_STATE(398)] = 892, + [SMALL_STATE(399)] = 964, + [SMALL_STATE(400)] = 1034, + [SMALL_STATE(401)] = 1104, + [SMALL_STATE(402)] = 1174, + [SMALL_STATE(403)] = 1244, + [SMALL_STATE(404)] = 1316, + [SMALL_STATE(405)] = 1386, + [SMALL_STATE(406)] = 1458, + [SMALL_STATE(407)] = 1544, + [SMALL_STATE(408)] = 1614, + [SMALL_STATE(409)] = 1686, + [SMALL_STATE(410)] = 1758, + [SMALL_STATE(411)] = 1844, + [SMALL_STATE(412)] = 1918, + [SMALL_STATE(413)] = 2004, + [SMALL_STATE(414)] = 2076, + [SMALL_STATE(415)] = 2162, + [SMALL_STATE(416)] = 2234, + [SMALL_STATE(417)] = 2306, + [SMALL_STATE(418)] = 2396, + [SMALL_STATE(419)] = 2466, + [SMALL_STATE(420)] = 2535, + [SMALL_STATE(421)] = 2604, + [SMALL_STATE(422)] = 2673, + [SMALL_STATE(423)] = 2742, + [SMALL_STATE(424)] = 2811, + [SMALL_STATE(425)] = 2880, + [SMALL_STATE(426)] = 2949, + [SMALL_STATE(427)] = 3018, + [SMALL_STATE(428)] = 3087, + [SMALL_STATE(429)] = 3156, + [SMALL_STATE(430)] = 3225, + [SMALL_STATE(431)] = 3294, + [SMALL_STATE(432)] = 3363, + [SMALL_STATE(433)] = 3432, + [SMALL_STATE(434)] = 3501, + [SMALL_STATE(435)] = 3570, + [SMALL_STATE(436)] = 3639, + [SMALL_STATE(437)] = 3708, + [SMALL_STATE(438)] = 3777, + [SMALL_STATE(439)] = 3846, + [SMALL_STATE(440)] = 3915, + [SMALL_STATE(441)] = 3984, + [SMALL_STATE(442)] = 4053, + [SMALL_STATE(443)] = 4122, + [SMALL_STATE(444)] = 4191, + [SMALL_STATE(445)] = 4260, + [SMALL_STATE(446)] = 4329, + [SMALL_STATE(447)] = 4398, + [SMALL_STATE(448)] = 4467, + [SMALL_STATE(449)] = 4536, + [SMALL_STATE(450)] = 4605, + [SMALL_STATE(451)] = 4674, + [SMALL_STATE(452)] = 4743, + [SMALL_STATE(453)] = 4812, + [SMALL_STATE(454)] = 4881, + [SMALL_STATE(455)] = 4950, + [SMALL_STATE(456)] = 5019, + [SMALL_STATE(457)] = 5088, + [SMALL_STATE(458)] = 5157, + [SMALL_STATE(459)] = 5226, + [SMALL_STATE(460)] = 5295, + [SMALL_STATE(461)] = 5364, + [SMALL_STATE(462)] = 5433, + [SMALL_STATE(463)] = 5502, + [SMALL_STATE(464)] = 5571, + [SMALL_STATE(465)] = 5640, + [SMALL_STATE(466)] = 5709, + [SMALL_STATE(467)] = 5778, + [SMALL_STATE(468)] = 5847, + [SMALL_STATE(469)] = 5916, + [SMALL_STATE(470)] = 5985, + [SMALL_STATE(471)] = 6054, + [SMALL_STATE(472)] = 6123, + [SMALL_STATE(473)] = 6192, + [SMALL_STATE(474)] = 6261, + [SMALL_STATE(475)] = 6330, + [SMALL_STATE(476)] = 6399, + [SMALL_STATE(477)] = 6468, + [SMALL_STATE(478)] = 6537, + [SMALL_STATE(479)] = 6606, + [SMALL_STATE(480)] = 6675, + [SMALL_STATE(481)] = 6744, + [SMALL_STATE(482)] = 6813, + [SMALL_STATE(483)] = 6882, + [SMALL_STATE(484)] = 6951, + [SMALL_STATE(485)] = 7020, + [SMALL_STATE(486)] = 7089, + [SMALL_STATE(487)] = 7158, + [SMALL_STATE(488)] = 7227, + [SMALL_STATE(489)] = 7315, + [SMALL_STATE(490)] = 7401, + [SMALL_STATE(491)] = 7483, + [SMALL_STATE(492)] = 7549, + [SMALL_STATE(493)] = 7631, + [SMALL_STATE(494)] = 7697, + [SMALL_STATE(495)] = 7763, + [SMALL_STATE(496)] = 7829, + [SMALL_STATE(497)] = 7895, + [SMALL_STATE(498)] = 7961, + [SMALL_STATE(499)] = 8031, + [SMALL_STATE(500)] = 8113, + [SMALL_STATE(501)] = 8179, + [SMALL_STATE(502)] = 8250, + [SMALL_STATE(503)] = 8321, + [SMALL_STATE(504)] = 8392, + [SMALL_STATE(505)] = 8463, + [SMALL_STATE(506)] = 8546, + [SMALL_STATE(507)] = 8610, + [SMALL_STATE(508)] = 8678, + [SMALL_STATE(509)] = 8742, + [SMALL_STATE(510)] = 8806, + [SMALL_STATE(511)] = 8870, + [SMALL_STATE(512)] = 8934, + [SMALL_STATE(513)] = 8998, + [SMALL_STATE(514)] = 9062, + [SMALL_STATE(515)] = 9126, + [SMALL_STATE(516)] = 9190, + [SMALL_STATE(517)] = 9254, + [SMALL_STATE(518)] = 9318, + [SMALL_STATE(519)] = 9382, + [SMALL_STATE(520)] = 9446, + [SMALL_STATE(521)] = 9510, + [SMALL_STATE(522)] = 9574, + [SMALL_STATE(523)] = 9638, + [SMALL_STATE(524)] = 9702, + [SMALL_STATE(525)] = 9766, + [SMALL_STATE(526)] = 9830, + [SMALL_STATE(527)] = 9893, + [SMALL_STATE(528)] = 9962, + [SMALL_STATE(529)] = 10029, + [SMALL_STATE(530)] = 10098, + [SMALL_STATE(531)] = 10167, + [SMALL_STATE(532)] = 10238, + [SMALL_STATE(533)] = 10309, + [SMALL_STATE(534)] = 10380, + [SMALL_STATE(535)] = 10443, + [SMALL_STATE(536)] = 10514, + [SMALL_STATE(537)] = 10585, + [SMALL_STATE(538)] = 10654, + [SMALL_STATE(539)] = 10717, + [SMALL_STATE(540)] = 10788, + [SMALL_STATE(541)] = 10859, + [SMALL_STATE(542)] = 10930, + [SMALL_STATE(543)] = 11001, + [SMALL_STATE(544)] = 11070, + [SMALL_STATE(545)] = 11139, + [SMALL_STATE(546)] = 11202, + [SMALL_STATE(547)] = 11271, + [SMALL_STATE(548)] = 11334, + [SMALL_STATE(549)] = 11397, + [SMALL_STATE(550)] = 11468, + [SMALL_STATE(551)] = 11537, + [SMALL_STATE(552)] = 11600, + [SMALL_STATE(553)] = 11666, + [SMALL_STATE(554)] = 11738, + [SMALL_STATE(555)] = 11808, + [SMALL_STATE(556)] = 11880, + [SMALL_STATE(557)] = 11948, + [SMALL_STATE(558)] = 12016, + [SMALL_STATE(559)] = 12084, + [SMALL_STATE(560)] = 12154, + [SMALL_STATE(561)] = 12220, + [SMALL_STATE(562)] = 12291, + [SMALL_STATE(563)] = 12358, + [SMALL_STATE(564)] = 12429, + [SMALL_STATE(565)] = 12498, + [SMALL_STATE(566)] = 12564, + [SMALL_STATE(567)] = 12630, + [SMALL_STATE(568)] = 12696, + [SMALL_STATE(569)] = 12762, + [SMALL_STATE(570)] = 12828, + [SMALL_STATE(571)] = 12894, + [SMALL_STATE(572)] = 12960, + [SMALL_STATE(573)] = 13028, + [SMALL_STATE(574)] = 13094, + [SMALL_STATE(575)] = 13164, + [SMALL_STATE(576)] = 13234, + [SMALL_STATE(577)] = 13300, + [SMALL_STATE(578)] = 13366, + [SMALL_STATE(579)] = 13429, + [SMALL_STATE(580)] = 13492, + [SMALL_STATE(581)] = 13559, + [SMALL_STATE(582)] = 13625, + [SMALL_STATE(583)] = 13681, + [SMALL_STATE(584)] = 13741, + [SMALL_STATE(585)] = 13794, + [SMALL_STATE(586)] = 13849, + [SMALL_STATE(587)] = 13902, + [SMALL_STATE(588)] = 13965, + [SMALL_STATE(589)] = 14028, + [SMALL_STATE(590)] = 14089, + [SMALL_STATE(591)] = 14142, + [SMALL_STATE(592)] = 14203, + [SMALL_STATE(593)] = 14253, + [SMALL_STATE(594)] = 14303, + [SMALL_STATE(595)] = 14353, + [SMALL_STATE(596)] = 14403, + [SMALL_STATE(597)] = 14453, + [SMALL_STATE(598)] = 14503, + [SMALL_STATE(599)] = 14555, + [SMALL_STATE(600)] = 14605, + [SMALL_STATE(601)] = 14655, + [SMALL_STATE(602)] = 14705, + [SMALL_STATE(603)] = 14755, + [SMALL_STATE(604)] = 14809, + [SMALL_STATE(605)] = 14859, + [SMALL_STATE(606)] = 14909, + [SMALL_STATE(607)] = 14959, + [SMALL_STATE(608)] = 15009, + [SMALL_STATE(609)] = 15059, + [SMALL_STATE(610)] = 15109, + [SMALL_STATE(611)] = 15159, + [SMALL_STATE(612)] = 15209, + [SMALL_STATE(613)] = 15259, + [SMALL_STATE(614)] = 15309, + [SMALL_STATE(615)] = 15359, + [SMALL_STATE(616)] = 15409, + [SMALL_STATE(617)] = 15459, + [SMALL_STATE(618)] = 15509, + [SMALL_STATE(619)] = 15559, + [SMALL_STATE(620)] = 15609, + [SMALL_STATE(621)] = 15659, + [SMALL_STATE(622)] = 15709, + [SMALL_STATE(623)] = 15759, + [SMALL_STATE(624)] = 15809, + [SMALL_STATE(625)] = 15859, + [SMALL_STATE(626)] = 15909, + [SMALL_STATE(627)] = 15959, + [SMALL_STATE(628)] = 16009, + [SMALL_STATE(629)] = 16059, + [SMALL_STATE(630)] = 16109, + [SMALL_STATE(631)] = 16159, + [SMALL_STATE(632)] = 16209, + [SMALL_STATE(633)] = 16263, + [SMALL_STATE(634)] = 16313, + [SMALL_STATE(635)] = 16363, + [SMALL_STATE(636)] = 16413, + [SMALL_STATE(637)] = 16463, + [SMALL_STATE(638)] = 16513, + [SMALL_STATE(639)] = 16563, + [SMALL_STATE(640)] = 16613, + [SMALL_STATE(641)] = 16663, + [SMALL_STATE(642)] = 16713, + [SMALL_STATE(643)] = 16763, + [SMALL_STATE(644)] = 16813, + [SMALL_STATE(645)] = 16863, + [SMALL_STATE(646)] = 16913, + [SMALL_STATE(647)] = 16963, + [SMALL_STATE(648)] = 17013, + [SMALL_STATE(649)] = 17067, + [SMALL_STATE(650)] = 17117, + [SMALL_STATE(651)] = 17167, + [SMALL_STATE(652)] = 17217, + [SMALL_STATE(653)] = 17268, + [SMALL_STATE(654)] = 17361, + [SMALL_STATE(655)] = 17454, + [SMALL_STATE(656)] = 17547, + [SMALL_STATE(657)] = 17640, + [SMALL_STATE(658)] = 17703, + [SMALL_STATE(659)] = 17796, + [SMALL_STATE(660)] = 17847, + [SMALL_STATE(661)] = 17940, + [SMALL_STATE(662)] = 18033, + [SMALL_STATE(663)] = 18106, + [SMALL_STATE(664)] = 18199, + [SMALL_STATE(665)] = 18292, + [SMALL_STATE(666)] = 18343, + [SMALL_STATE(667)] = 18436, + [SMALL_STATE(668)] = 18529, + [SMALL_STATE(669)] = 18622, + [SMALL_STATE(670)] = 18685, + [SMALL_STATE(671)] = 18736, + [SMALL_STATE(672)] = 18821, + [SMALL_STATE(673)] = 18908, + [SMALL_STATE(674)] = 18977, + [SMALL_STATE(675)] = 19058, + [SMALL_STATE(676)] = 19141, + [SMALL_STATE(677)] = 19226, + [SMALL_STATE(678)] = 19293, + [SMALL_STATE(679)] = 19356, + [SMALL_STATE(680)] = 19433, + [SMALL_STATE(681)] = 19522, + [SMALL_STATE(682)] = 19579, + [SMALL_STATE(683)] = 19631, + [SMALL_STATE(684)] = 19681, + [SMALL_STATE(685)] = 19733, + [SMALL_STATE(686)] = 19783, + [SMALL_STATE(687)] = 19841, + [SMALL_STATE(688)] = 19889, + [SMALL_STATE(689)] = 19939, + [SMALL_STATE(690)] = 19987, + [SMALL_STATE(691)] = 20079, + [SMALL_STATE(692)] = 20137, + [SMALL_STATE(693)] = 20197, + [SMALL_STATE(694)] = 20251, + [SMALL_STATE(695)] = 20301, + [SMALL_STATE(696)] = 20361, + [SMALL_STATE(697)] = 20452, + [SMALL_STATE(698)] = 20499, + [SMALL_STATE(699)] = 20590, + [SMALL_STATE(700)] = 20637, + [SMALL_STATE(701)] = 20684, + [SMALL_STATE(702)] = 20733, + [SMALL_STATE(703)] = 20784, + [SMALL_STATE(704)] = 20875, + [SMALL_STATE(705)] = 20946, + [SMALL_STATE(706)] = 21007, + [SMALL_STATE(707)] = 21054, + [SMALL_STATE(708)] = 21137, + [SMALL_STATE(709)] = 21222, + [SMALL_STATE(710)] = 21289, + [SMALL_STATE(711)] = 21368, + [SMALL_STATE(712)] = 21449, + [SMALL_STATE(713)] = 21532, + [SMALL_STATE(714)] = 21597, + [SMALL_STATE(715)] = 21658, + [SMALL_STATE(716)] = 21733, + [SMALL_STATE(717)] = 21820, + [SMALL_STATE(718)] = 21911, + [SMALL_STATE(719)] = 22002, + [SMALL_STATE(720)] = 22093, + [SMALL_STATE(721)] = 22140, + [SMALL_STATE(722)] = 22231, + [SMALL_STATE(723)] = 22322, + [SMALL_STATE(724)] = 22413, + [SMALL_STATE(725)] = 22464, + [SMALL_STATE(726)] = 22555, + [SMALL_STATE(727)] = 22626, + [SMALL_STATE(728)] = 22717, + [SMALL_STATE(729)] = 22764, + [SMALL_STATE(730)] = 22855, + [SMALL_STATE(731)] = 22906, + [SMALL_STATE(732)] = 22957, + [SMALL_STATE(733)] = 23004, + [SMALL_STATE(734)] = 23055, + [SMALL_STATE(735)] = 23102, + [SMALL_STATE(736)] = 23149, + [SMALL_STATE(737)] = 23196, + [SMALL_STATE(738)] = 23243, + [SMALL_STATE(739)] = 23290, + [SMALL_STATE(740)] = 23337, + [SMALL_STATE(741)] = 23384, + [SMALL_STATE(742)] = 23431, + [SMALL_STATE(743)] = 23478, + [SMALL_STATE(744)] = 23525, + [SMALL_STATE(745)] = 23572, + [SMALL_STATE(746)] = 23619, + [SMALL_STATE(747)] = 23666, + [SMALL_STATE(748)] = 23713, + [SMALL_STATE(749)] = 23760, + [SMALL_STATE(750)] = 23821, + [SMALL_STATE(751)] = 23868, + [SMALL_STATE(752)] = 23951, + [SMALL_STATE(753)] = 24002, + [SMALL_STATE(754)] = 24087, + [SMALL_STATE(755)] = 24134, + [SMALL_STATE(756)] = 24181, + [SMALL_STATE(757)] = 24248, + [SMALL_STATE(758)] = 24295, + [SMALL_STATE(759)] = 24342, + [SMALL_STATE(760)] = 24389, + [SMALL_STATE(761)] = 24468, + [SMALL_STATE(762)] = 24519, + [SMALL_STATE(763)] = 24610, + [SMALL_STATE(764)] = 24691, + [SMALL_STATE(765)] = 24738, + [SMALL_STATE(766)] = 24789, + [SMALL_STATE(767)] = 24836, + [SMALL_STATE(768)] = 24883, + [SMALL_STATE(769)] = 24934, + [SMALL_STATE(770)] = 25025, + [SMALL_STATE(771)] = 25072, + [SMALL_STATE(772)] = 25121, + [SMALL_STATE(773)] = 25168, + [SMALL_STATE(774)] = 25215, + [SMALL_STATE(775)] = 25266, + [SMALL_STATE(776)] = 25349, + [SMALL_STATE(777)] = 25414, + [SMALL_STATE(778)] = 25475, + [SMALL_STATE(779)] = 25550, + [SMALL_STATE(780)] = 25597, + [SMALL_STATE(781)] = 25684, + [SMALL_STATE(782)] = 25731, + [SMALL_STATE(783)] = 25782, + [SMALL_STATE(784)] = 25829, + [SMALL_STATE(785)] = 25876, + [SMALL_STATE(786)] = 25923, + [SMALL_STATE(787)] = 25970, + [SMALL_STATE(788)] = 26061, + [SMALL_STATE(789)] = 26108, + [SMALL_STATE(790)] = 26155, + [SMALL_STATE(791)] = 26202, + [SMALL_STATE(792)] = 26293, + [SMALL_STATE(793)] = 26384, + [SMALL_STATE(794)] = 26433, + [SMALL_STATE(795)] = 26480, + [SMALL_STATE(796)] = 26529, + [SMALL_STATE(797)] = 26620, + [SMALL_STATE(798)] = 26667, + [SMALL_STATE(799)] = 26718, + [SMALL_STATE(800)] = 26769, + [SMALL_STATE(801)] = 26816, + [SMALL_STATE(802)] = 26863, + [SMALL_STATE(803)] = 26954, + [SMALL_STATE(804)] = 27045, + [SMALL_STATE(805)] = 27096, + [SMALL_STATE(806)] = 27143, + [SMALL_STATE(807)] = 27234, + [SMALL_STATE(808)] = 27281, + [SMALL_STATE(809)] = 27372, + [SMALL_STATE(810)] = 27463, + [SMALL_STATE(811)] = 27510, + [SMALL_STATE(812)] = 27601, + [SMALL_STATE(813)] = 27653, + [SMALL_STATE(814)] = 27747, + [SMALL_STATE(815)] = 27841, + [SMALL_STATE(816)] = 27891, + [SMALL_STATE(817)] = 27941, + [SMALL_STATE(818)] = 27993, + [SMALL_STATE(819)] = 28087, + [SMALL_STATE(820)] = 28137, + [SMALL_STATE(821)] = 28189, + [SMALL_STATE(822)] = 28283, + [SMALL_STATE(823)] = 28377, + [SMALL_STATE(824)] = 28471, + [SMALL_STATE(825)] = 28561, + [SMALL_STATE(826)] = 28651, + [SMALL_STATE(827)] = 28743, + [SMALL_STATE(828)] = 28795, + [SMALL_STATE(829)] = 28882, + [SMALL_STATE(830)] = 28975, + [SMALL_STATE(831)] = 29068, + [SMALL_STATE(832)] = 29161, + [SMALL_STATE(833)] = 29254, + [SMALL_STATE(834)] = 29347, + [SMALL_STATE(835)] = 29440, + [SMALL_STATE(836)] = 29533, + [SMALL_STATE(837)] = 29626, + [SMALL_STATE(838)] = 29719, + [SMALL_STATE(839)] = 29812, + [SMALL_STATE(840)] = 29905, + [SMALL_STATE(841)] = 29998, + [SMALL_STATE(842)] = 30091, + [SMALL_STATE(843)] = 30184, + [SMALL_STATE(844)] = 30277, + [SMALL_STATE(845)] = 30370, + [SMALL_STATE(846)] = 30459, + [SMALL_STATE(847)] = 30552, + [SMALL_STATE(848)] = 30645, + [SMALL_STATE(849)] = 30734, + [SMALL_STATE(850)] = 30827, + [SMALL_STATE(851)] = 30920, + [SMALL_STATE(852)] = 30971, + [SMALL_STATE(853)] = 31022, + [SMALL_STATE(854)] = 31073, + [SMALL_STATE(855)] = 31124, + [SMALL_STATE(856)] = 31213, + [SMALL_STATE(857)] = 31300, + [SMALL_STATE(858)] = 31393, + [SMALL_STATE(859)] = 31486, + [SMALL_STATE(860)] = 31579, + [SMALL_STATE(861)] = 31672, + [SMALL_STATE(862)] = 31765, + [SMALL_STATE(863)] = 31858, + [SMALL_STATE(864)] = 31951, + [SMALL_STATE(865)] = 32044, + [SMALL_STATE(866)] = 32131, + [SMALL_STATE(867)] = 32224, + [SMALL_STATE(868)] = 32317, + [SMALL_STATE(869)] = 32404, + [SMALL_STATE(870)] = 32497, + [SMALL_STATE(871)] = 32584, + [SMALL_STATE(872)] = 32671, + [SMALL_STATE(873)] = 32764, + [SMALL_STATE(874)] = 32857, + [SMALL_STATE(875)] = 32950, + [SMALL_STATE(876)] = 33043, + [SMALL_STATE(877)] = 33136, + [SMALL_STATE(878)] = 33229, + [SMALL_STATE(879)] = 33322, + [SMALL_STATE(880)] = 33415, + [SMALL_STATE(881)] = 33508, + [SMALL_STATE(882)] = 33601, + [SMALL_STATE(883)] = 33694, + [SMALL_STATE(884)] = 33787, + [SMALL_STATE(885)] = 33880, + [SMALL_STATE(886)] = 33973, + [SMALL_STATE(887)] = 34066, + [SMALL_STATE(888)] = 34154, + [SMALL_STATE(889)] = 34200, + [SMALL_STATE(890)] = 34288, + [SMALL_STATE(891)] = 34376, + [SMALL_STATE(892)] = 34464, + [SMALL_STATE(893)] = 34552, + [SMALL_STATE(894)] = 34640, + [SMALL_STATE(895)] = 34728, + [SMALL_STATE(896)] = 34796, + [SMALL_STATE(897)] = 34854, + [SMALL_STATE(898)] = 34934, + [SMALL_STATE(899)] = 35016, + [SMALL_STATE(900)] = 35080, + [SMALL_STATE(901)] = 35156, + [SMALL_STATE(902)] = 35234, + [SMALL_STATE(903)] = 35314, + [SMALL_STATE(904)] = 35376, + [SMALL_STATE(905)] = 35434, + [SMALL_STATE(906)] = 35506, + [SMALL_STATE(907)] = 35590, + [SMALL_STATE(908)] = 35678, + [SMALL_STATE(909)] = 35766, + [SMALL_STATE(910)] = 35854, + [SMALL_STATE(911)] = 35942, + [SMALL_STATE(912)] = 36030, + [SMALL_STATE(913)] = 36118, + [SMALL_STATE(914)] = 36206, + [SMALL_STATE(915)] = 36296, + [SMALL_STATE(916)] = 36384, + [SMALL_STATE(917)] = 36472, + [SMALL_STATE(918)] = 36518, + [SMALL_STATE(919)] = 36606, + [SMALL_STATE(920)] = 36694, + [SMALL_STATE(921)] = 36782, + [SMALL_STATE(922)] = 36870, + [SMALL_STATE(923)] = 36916, + [SMALL_STATE(924)] = 36984, + [SMALL_STATE(925)] = 37042, + [SMALL_STATE(926)] = 37122, + [SMALL_STATE(927)] = 37204, + [SMALL_STATE(928)] = 37268, + [SMALL_STATE(929)] = 37344, + [SMALL_STATE(930)] = 37422, + [SMALL_STATE(931)] = 37502, + [SMALL_STATE(932)] = 37564, + [SMALL_STATE(933)] = 37622, + [SMALL_STATE(934)] = 37694, + [SMALL_STATE(935)] = 37778, + [SMALL_STATE(936)] = 37866, + [SMALL_STATE(937)] = 37954, + [SMALL_STATE(938)] = 38042, + [SMALL_STATE(939)] = 38130, + [SMALL_STATE(940)] = 38218, + [SMALL_STATE(941)] = 38306, + [SMALL_STATE(942)] = 38394, + [SMALL_STATE(943)] = 38482, + [SMALL_STATE(944)] = 38570, + [SMALL_STATE(945)] = 38658, + [SMALL_STATE(946)] = 38746, + [SMALL_STATE(947)] = 38834, + [SMALL_STATE(948)] = 38902, + [SMALL_STATE(949)] = 38960, + [SMALL_STATE(950)] = 39040, + [SMALL_STATE(951)] = 39122, + [SMALL_STATE(952)] = 39186, + [SMALL_STATE(953)] = 39262, + [SMALL_STATE(954)] = 39340, + [SMALL_STATE(955)] = 39420, + [SMALL_STATE(956)] = 39482, + [SMALL_STATE(957)] = 39540, + [SMALL_STATE(958)] = 39612, + [SMALL_STATE(959)] = 39696, + [SMALL_STATE(960)] = 39784, + [SMALL_STATE(961)] = 39872, + [SMALL_STATE(962)] = 39960, + [SMALL_STATE(963)] = 40048, + [SMALL_STATE(964)] = 40136, + [SMALL_STATE(965)] = 40224, + [SMALL_STATE(966)] = 40274, + [SMALL_STATE(967)] = 40362, + [SMALL_STATE(968)] = 40450, + [SMALL_STATE(969)] = 40537, + [SMALL_STATE(970)] = 40616, + [SMALL_STATE(971)] = 40703, + [SMALL_STATE(972)] = 40790, + [SMALL_STATE(973)] = 40877, + [SMALL_STATE(974)] = 40964, + [SMALL_STATE(975)] = 41051, + [SMALL_STATE(976)] = 41138, + [SMALL_STATE(977)] = 41225, + [SMALL_STATE(978)] = 41312, + [SMALL_STATE(979)] = 41401, + [SMALL_STATE(980)] = 41485, + [SMALL_STATE(981)] = 41569, + [SMALL_STATE(982)] = 41640, + [SMALL_STATE(983)] = 41712, + [SMALL_STATE(984)] = 41784, + [SMALL_STATE(985)] = 41856, + [SMALL_STATE(986)] = 41928, + [SMALL_STATE(987)] = 41986, + [SMALL_STATE(988)] = 42044, + [SMALL_STATE(989)] = 42116, + [SMALL_STATE(990)] = 42182, + [SMALL_STATE(991)] = 42254, + [SMALL_STATE(992)] = 42326, + [SMALL_STATE(993)] = 42379, + [SMALL_STATE(994)] = 42438, + [SMALL_STATE(995)] = 42495, + [SMALL_STATE(996)] = 42554, + [SMALL_STATE(997)] = 42611, + [SMALL_STATE(998)] = 42670, + [SMALL_STATE(999)] = 42727, + [SMALL_STATE(1000)] = 42786, + [SMALL_STATE(1001)] = 42843, + [SMALL_STATE(1002)] = 42900, + [SMALL_STATE(1003)] = 42959, + [SMALL_STATE(1004)] = 43018, + [SMALL_STATE(1005)] = 43075, + [SMALL_STATE(1006)] = 43127, + [SMALL_STATE(1007)] = 43179, + [SMALL_STATE(1008)] = 43231, + [SMALL_STATE(1009)] = 43283, + [SMALL_STATE(1010)] = 43337, + [SMALL_STATE(1011)] = 43389, + [SMALL_STATE(1012)] = 43441, + [SMALL_STATE(1013)] = 43492, + [SMALL_STATE(1014)] = 43545, + [SMALL_STATE(1015)] = 43606, + [SMALL_STATE(1016)] = 43657, + [SMALL_STATE(1017)] = 43706, + [SMALL_STATE(1018)] = 43752, + [SMALL_STATE(1019)] = 43798, + [SMALL_STATE(1020)] = 43854, + [SMALL_STATE(1021)] = 43900, + [SMALL_STATE(1022)] = 43946, + [SMALL_STATE(1023)] = 43994, + [SMALL_STATE(1024)] = 44038, + [SMALL_STATE(1025)] = 44086, + [SMALL_STATE(1026)] = 44142, + [SMALL_STATE(1027)] = 44186, + [SMALL_STATE(1028)] = 44230, + [SMALL_STATE(1029)] = 44269, + [SMALL_STATE(1030)] = 44308, + [SMALL_STATE(1031)] = 44347, + [SMALL_STATE(1032)] = 44386, + [SMALL_STATE(1033)] = 44425, + [SMALL_STATE(1034)] = 44464, + [SMALL_STATE(1035)] = 44499, + [SMALL_STATE(1036)] = 44540, + [SMALL_STATE(1037)] = 44593, + [SMALL_STATE(1038)] = 44621, + [SMALL_STATE(1039)] = 44671, + [SMALL_STATE(1040)] = 44699, + [SMALL_STATE(1041)] = 44727, + [SMALL_STATE(1042)] = 44761, + [SMALL_STATE(1043)] = 44791, + [SMALL_STATE(1044)] = 44819, + [SMALL_STATE(1045)] = 44847, + [SMALL_STATE(1046)] = 44875, + [SMALL_STATE(1047)] = 44903, + [SMALL_STATE(1048)] = 44933, + [SMALL_STATE(1049)] = 44961, + [SMALL_STATE(1050)] = 44989, + [SMALL_STATE(1051)] = 45017, + [SMALL_STATE(1052)] = 45045, + [SMALL_STATE(1053)] = 45073, + [SMALL_STATE(1054)] = 45101, + [SMALL_STATE(1055)] = 45129, + [SMALL_STATE(1056)] = 45157, + [SMALL_STATE(1057)] = 45185, + [SMALL_STATE(1058)] = 45213, + [SMALL_STATE(1059)] = 45241, + [SMALL_STATE(1060)] = 45269, + [SMALL_STATE(1061)] = 45297, + [SMALL_STATE(1062)] = 45325, + [SMALL_STATE(1063)] = 45353, + [SMALL_STATE(1064)] = 45381, + [SMALL_STATE(1065)] = 45409, + [SMALL_STATE(1066)] = 45437, + [SMALL_STATE(1067)] = 45465, + [SMALL_STATE(1068)] = 45515, + [SMALL_STATE(1069)] = 45543, + [SMALL_STATE(1070)] = 45571, + [SMALL_STATE(1071)] = 45599, + [SMALL_STATE(1072)] = 45628, + [SMALL_STATE(1073)] = 45671, + [SMALL_STATE(1074)] = 45698, + [SMALL_STATE(1075)] = 45737, + [SMALL_STATE(1076)] = 45764, + [SMALL_STATE(1077)] = 45807, + [SMALL_STATE(1078)] = 45852, + [SMALL_STATE(1079)] = 45879, + [SMALL_STATE(1080)] = 45922, + [SMALL_STATE(1081)] = 45949, + [SMALL_STATE(1082)] = 45976, + [SMALL_STATE(1083)] = 46017, + [SMALL_STATE(1084)] = 46058, + [SMALL_STATE(1085)] = 46101, + [SMALL_STATE(1086)] = 46128, + [SMALL_STATE(1087)] = 46164, + [SMALL_STATE(1088)] = 46200, + [SMALL_STATE(1089)] = 46236, + [SMALL_STATE(1090)] = 46278, + [SMALL_STATE(1091)] = 46314, + [SMALL_STATE(1092)] = 46350, + [SMALL_STATE(1093)] = 46386, + [SMALL_STATE(1094)] = 46422, + [SMALL_STATE(1095)] = 46448, + [SMALL_STATE(1096)] = 46484, + [SMALL_STATE(1097)] = 46520, + [SMALL_STATE(1098)] = 46546, + [SMALL_STATE(1099)] = 46582, + [SMALL_STATE(1100)] = 46618, + [SMALL_STATE(1101)] = 46644, + [SMALL_STATE(1102)] = 46684, + [SMALL_STATE(1103)] = 46720, + [SMALL_STATE(1104)] = 46756, + [SMALL_STATE(1105)] = 46792, + [SMALL_STATE(1106)] = 46834, + [SMALL_STATE(1107)] = 46860, + [SMALL_STATE(1108)] = 46896, + [SMALL_STATE(1109)] = 46932, + [SMALL_STATE(1110)] = 46968, + [SMALL_STATE(1111)] = 47008, + [SMALL_STATE(1112)] = 47044, + [SMALL_STATE(1113)] = 47080, + [SMALL_STATE(1114)] = 47116, + [SMALL_STATE(1115)] = 47152, + [SMALL_STATE(1116)] = 47188, + [SMALL_STATE(1117)] = 47224, + [SMALL_STATE(1118)] = 47260, + [SMALL_STATE(1119)] = 47286, + [SMALL_STATE(1120)] = 47312, + [SMALL_STATE(1121)] = 47345, + [SMALL_STATE(1122)] = 47378, + [SMALL_STATE(1123)] = 47411, + [SMALL_STATE(1124)] = 47444, + [SMALL_STATE(1125)] = 47477, + [SMALL_STATE(1126)] = 47510, + [SMALL_STATE(1127)] = 47543, + [SMALL_STATE(1128)] = 47576, + [SMALL_STATE(1129)] = 47609, + [SMALL_STATE(1130)] = 47642, + [SMALL_STATE(1131)] = 47675, + [SMALL_STATE(1132)] = 47708, + [SMALL_STATE(1133)] = 47741, + [SMALL_STATE(1134)] = 47774, + [SMALL_STATE(1135)] = 47807, + [SMALL_STATE(1136)] = 47840, + [SMALL_STATE(1137)] = 47873, + [SMALL_STATE(1138)] = 47906, + [SMALL_STATE(1139)] = 47928, + [SMALL_STATE(1140)] = 47950, + [SMALL_STATE(1141)] = 47972, + [SMALL_STATE(1142)] = 47994, + [SMALL_STATE(1143)] = 48016, + [SMALL_STATE(1144)] = 48038, + [SMALL_STATE(1145)] = 48075, + [SMALL_STATE(1146)] = 48111, + [SMALL_STATE(1147)] = 48141, + [SMALL_STATE(1148)] = 48177, + [SMALL_STATE(1149)] = 48207, + [SMALL_STATE(1150)] = 48237, + [SMALL_STATE(1151)] = 48267, + [SMALL_STATE(1152)] = 48303, + [SMALL_STATE(1153)] = 48339, + [SMALL_STATE(1154)] = 48369, + [SMALL_STATE(1155)] = 48399, + [SMALL_STATE(1156)] = 48429, + [SMALL_STATE(1157)] = 48459, + [SMALL_STATE(1158)] = 48492, + [SMALL_STATE(1159)] = 48525, + [SMALL_STATE(1160)] = 48558, + [SMALL_STATE(1161)] = 48585, + [SMALL_STATE(1162)] = 48618, + [SMALL_STATE(1163)] = 48651, + [SMALL_STATE(1164)] = 48684, + [SMALL_STATE(1165)] = 48717, + [SMALL_STATE(1166)] = 48750, + [SMALL_STATE(1167)] = 48780, + [SMALL_STATE(1168)] = 48810, + [SMALL_STATE(1169)] = 48836, + [SMALL_STATE(1170)] = 48866, + [SMALL_STATE(1171)] = 48892, + [SMALL_STATE(1172)] = 48920, + [SMALL_STATE(1173)] = 48948, + [SMALL_STATE(1174)] = 48978, + [SMALL_STATE(1175)] = 49008, + [SMALL_STATE(1176)] = 49038, + [SMALL_STATE(1177)] = 49068, + [SMALL_STATE(1178)] = 49098, + [SMALL_STATE(1179)] = 49128, + [SMALL_STATE(1180)] = 49158, + [SMALL_STATE(1181)] = 49188, + [SMALL_STATE(1182)] = 49218, + [SMALL_STATE(1183)] = 49248, + [SMALL_STATE(1184)] = 49278, + [SMALL_STATE(1185)] = 49308, + [SMALL_STATE(1186)] = 49338, + [SMALL_STATE(1187)] = 49368, + [SMALL_STATE(1188)] = 49398, + [SMALL_STATE(1189)] = 49428, + [SMALL_STATE(1190)] = 49458, + [SMALL_STATE(1191)] = 49488, + [SMALL_STATE(1192)] = 49513, + [SMALL_STATE(1193)] = 49538, + [SMALL_STATE(1194)] = 49565, + [SMALL_STATE(1195)] = 49590, + [SMALL_STATE(1196)] = 49615, + [SMALL_STATE(1197)] = 49640, + [SMALL_STATE(1198)] = 49665, + [SMALL_STATE(1199)] = 49692, + [SMALL_STATE(1200)] = 49717, + [SMALL_STATE(1201)] = 49742, + [SMALL_STATE(1202)] = 49767, + [SMALL_STATE(1203)] = 49789, + [SMALL_STATE(1204)] = 49811, + [SMALL_STATE(1205)] = 49829, + [SMALL_STATE(1206)] = 49851, + [SMALL_STATE(1207)] = 49865, + [SMALL_STATE(1208)] = 49879, + [SMALL_STATE(1209)] = 49899, + [SMALL_STATE(1210)] = 49921, + [SMALL_STATE(1211)] = 49945, + [SMALL_STATE(1212)] = 49969, + [SMALL_STATE(1213)] = 49993, + [SMALL_STATE(1214)] = 50015, + [SMALL_STATE(1215)] = 50039, + [SMALL_STATE(1216)] = 50059, + [SMALL_STATE(1217)] = 50079, + [SMALL_STATE(1218)] = 50103, + [SMALL_STATE(1219)] = 50117, + [SMALL_STATE(1220)] = 50131, + [SMALL_STATE(1221)] = 50155, + [SMALL_STATE(1222)] = 50179, + [SMALL_STATE(1223)] = 50193, + [SMALL_STATE(1224)] = 50215, + [SMALL_STATE(1225)] = 50233, + [SMALL_STATE(1226)] = 50248, + [SMALL_STATE(1227)] = 50265, + [SMALL_STATE(1228)] = 50278, + [SMALL_STATE(1229)] = 50299, + [SMALL_STATE(1230)] = 50318, + [SMALL_STATE(1231)] = 50333, + [SMALL_STATE(1232)] = 50354, + [SMALL_STATE(1233)] = 50375, + [SMALL_STATE(1234)] = 50394, + [SMALL_STATE(1235)] = 50407, + [SMALL_STATE(1236)] = 50420, + [SMALL_STATE(1237)] = 50439, + [SMALL_STATE(1238)] = 50452, + [SMALL_STATE(1239)] = 50465, + [SMALL_STATE(1240)] = 50484, + [SMALL_STATE(1241)] = 50503, + [SMALL_STATE(1242)] = 50516, + [SMALL_STATE(1243)] = 50535, + [SMALL_STATE(1244)] = 50554, + [SMALL_STATE(1245)] = 50573, + [SMALL_STATE(1246)] = 50594, + [SMALL_STATE(1247)] = 50613, + [SMALL_STATE(1248)] = 50626, + [SMALL_STATE(1249)] = 50639, + [SMALL_STATE(1250)] = 50652, + [SMALL_STATE(1251)] = 50671, + [SMALL_STATE(1252)] = 50684, + [SMALL_STATE(1253)] = 50703, + [SMALL_STATE(1254)] = 50717, + [SMALL_STATE(1255)] = 50731, + [SMALL_STATE(1256)] = 50745, + [SMALL_STATE(1257)] = 50759, + [SMALL_STATE(1258)] = 50773, + [SMALL_STATE(1259)] = 50787, + [SMALL_STATE(1260)] = 50801, + [SMALL_STATE(1261)] = 50821, + [SMALL_STATE(1262)] = 50841, + [SMALL_STATE(1263)] = 50861, + [SMALL_STATE(1264)] = 50875, + [SMALL_STATE(1265)] = 50889, + [SMALL_STATE(1266)] = 50903, + [SMALL_STATE(1267)] = 50917, + [SMALL_STATE(1268)] = 50937, + [SMALL_STATE(1269)] = 50957, + [SMALL_STATE(1270)] = 50971, + [SMALL_STATE(1271)] = 50985, + [SMALL_STATE(1272)] = 51005, + [SMALL_STATE(1273)] = 51019, + [SMALL_STATE(1274)] = 51039, + [SMALL_STATE(1275)] = 51051, + [SMALL_STATE(1276)] = 51065, + [SMALL_STATE(1277)] = 51079, + [SMALL_STATE(1278)] = 51097, + [SMALL_STATE(1279)] = 51111, + [SMALL_STATE(1280)] = 51131, + [SMALL_STATE(1281)] = 51143, + [SMALL_STATE(1282)] = 51157, + [SMALL_STATE(1283)] = 51171, + [SMALL_STATE(1284)] = 51187, + [SMALL_STATE(1285)] = 51207, + [SMALL_STATE(1286)] = 51223, + [SMALL_STATE(1287)] = 51243, + [SMALL_STATE(1288)] = 51257, + [SMALL_STATE(1289)] = 51277, + [SMALL_STATE(1290)] = 51297, + [SMALL_STATE(1291)] = 51311, + [SMALL_STATE(1292)] = 51325, + [SMALL_STATE(1293)] = 51339, + [SMALL_STATE(1294)] = 51359, + [SMALL_STATE(1295)] = 51373, + [SMALL_STATE(1296)] = 51393, + [SMALL_STATE(1297)] = 51413, + [SMALL_STATE(1298)] = 51429, + [SMALL_STATE(1299)] = 51449, + [SMALL_STATE(1300)] = 51463, + [SMALL_STATE(1301)] = 51477, + [SMALL_STATE(1302)] = 51491, + [SMALL_STATE(1303)] = 51505, + [SMALL_STATE(1304)] = 51525, + [SMALL_STATE(1305)] = 51541, + [SMALL_STATE(1306)] = 51555, + [SMALL_STATE(1307)] = 51575, + [SMALL_STATE(1308)] = 51589, + [SMALL_STATE(1309)] = 51603, + [SMALL_STATE(1310)] = 51617, + [SMALL_STATE(1311)] = 51637, + [SMALL_STATE(1312)] = 51653, + [SMALL_STATE(1313)] = 51667, + [SMALL_STATE(1314)] = 51687, + [SMALL_STATE(1315)] = 51701, + [SMALL_STATE(1316)] = 51721, + [SMALL_STATE(1317)] = 51733, + [SMALL_STATE(1318)] = 51747, + [SMALL_STATE(1319)] = 51767, + [SMALL_STATE(1320)] = 51781, + [SMALL_STATE(1321)] = 51800, + [SMALL_STATE(1322)] = 51815, + [SMALL_STATE(1323)] = 51832, + [SMALL_STATE(1324)] = 51849, + [SMALL_STATE(1325)] = 51862, + [SMALL_STATE(1326)] = 51877, + [SMALL_STATE(1327)] = 51894, + [SMALL_STATE(1328)] = 51911, + [SMALL_STATE(1329)] = 51928, + [SMALL_STATE(1330)] = 51945, + [SMALL_STATE(1331)] = 51962, + [SMALL_STATE(1332)] = 51979, + [SMALL_STATE(1333)] = 51996, + [SMALL_STATE(1334)] = 52013, + [SMALL_STATE(1335)] = 52030, + [SMALL_STATE(1336)] = 52045, + [SMALL_STATE(1337)] = 52062, + [SMALL_STATE(1338)] = 52077, + [SMALL_STATE(1339)] = 52092, + [SMALL_STATE(1340)] = 52109, + [SMALL_STATE(1341)] = 52120, + [SMALL_STATE(1342)] = 52135, + [SMALL_STATE(1343)] = 52146, + [SMALL_STATE(1344)] = 52163, + [SMALL_STATE(1345)] = 52178, + [SMALL_STATE(1346)] = 52195, + [SMALL_STATE(1347)] = 52206, + [SMALL_STATE(1348)] = 52223, + [SMALL_STATE(1349)] = 52242, + [SMALL_STATE(1350)] = 52259, + [SMALL_STATE(1351)] = 52276, + [SMALL_STATE(1352)] = 52293, + [SMALL_STATE(1353)] = 52310, + [SMALL_STATE(1354)] = 52327, + [SMALL_STATE(1355)] = 52342, + [SMALL_STATE(1356)] = 52361, + [SMALL_STATE(1357)] = 52380, + [SMALL_STATE(1358)] = 52397, + [SMALL_STATE(1359)] = 52412, + [SMALL_STATE(1360)] = 52427, + [SMALL_STATE(1361)] = 52444, + [SMALL_STATE(1362)] = 52461, + [SMALL_STATE(1363)] = 52478, + [SMALL_STATE(1364)] = 52495, + [SMALL_STATE(1365)] = 52512, + [SMALL_STATE(1366)] = 52527, + [SMALL_STATE(1367)] = 52538, + [SMALL_STATE(1368)] = 52555, + [SMALL_STATE(1369)] = 52572, + [SMALL_STATE(1370)] = 52589, + [SMALL_STATE(1371)] = 52606, + [SMALL_STATE(1372)] = 52621, + [SMALL_STATE(1373)] = 52638, + [SMALL_STATE(1374)] = 52655, + [SMALL_STATE(1375)] = 52672, + [SMALL_STATE(1376)] = 52683, + [SMALL_STATE(1377)] = 52700, + [SMALL_STATE(1378)] = 52717, + [SMALL_STATE(1379)] = 52734, + [SMALL_STATE(1380)] = 52749, + [SMALL_STATE(1381)] = 52764, + [SMALL_STATE(1382)] = 52781, + [SMALL_STATE(1383)] = 52798, + [SMALL_STATE(1384)] = 52815, + [SMALL_STATE(1385)] = 52834, + [SMALL_STATE(1386)] = 52849, + [SMALL_STATE(1387)] = 52866, + [SMALL_STATE(1388)] = 52883, + [SMALL_STATE(1389)] = 52900, + [SMALL_STATE(1390)] = 52911, + [SMALL_STATE(1391)] = 52926, + [SMALL_STATE(1392)] = 52941, + [SMALL_STATE(1393)] = 52958, + [SMALL_STATE(1394)] = 52975, + [SMALL_STATE(1395)] = 52990, + [SMALL_STATE(1396)] = 53007, + [SMALL_STATE(1397)] = 53024, + [SMALL_STATE(1398)] = 53037, + [SMALL_STATE(1399)] = 53056, + [SMALL_STATE(1400)] = 53070, + [SMALL_STATE(1401)] = 53084, + [SMALL_STATE(1402)] = 53098, + [SMALL_STATE(1403)] = 53112, + [SMALL_STATE(1404)] = 53126, + [SMALL_STATE(1405)] = 53138, + [SMALL_STATE(1406)] = 53152, + [SMALL_STATE(1407)] = 53166, + [SMALL_STATE(1408)] = 53180, + [SMALL_STATE(1409)] = 53190, + [SMALL_STATE(1410)] = 53204, + [SMALL_STATE(1411)] = 53216, + [SMALL_STATE(1412)] = 53230, + [SMALL_STATE(1413)] = 53244, + [SMALL_STATE(1414)] = 53258, + [SMALL_STATE(1415)] = 53272, + [SMALL_STATE(1416)] = 53282, + [SMALL_STATE(1417)] = 53296, + [SMALL_STATE(1418)] = 53310, + [SMALL_STATE(1419)] = 53324, + [SMALL_STATE(1420)] = 53338, + [SMALL_STATE(1421)] = 53352, + [SMALL_STATE(1422)] = 53366, + [SMALL_STATE(1423)] = 53380, + [SMALL_STATE(1424)] = 53392, + [SMALL_STATE(1425)] = 53406, + [SMALL_STATE(1426)] = 53416, + [SMALL_STATE(1427)] = 53430, + [SMALL_STATE(1428)] = 53444, + [SMALL_STATE(1429)] = 53458, + [SMALL_STATE(1430)] = 53472, + [SMALL_STATE(1431)] = 53486, + [SMALL_STATE(1432)] = 53498, + [SMALL_STATE(1433)] = 53512, + [SMALL_STATE(1434)] = 53526, + [SMALL_STATE(1435)] = 53538, + [SMALL_STATE(1436)] = 53552, + [SMALL_STATE(1437)] = 53566, + [SMALL_STATE(1438)] = 53580, + [SMALL_STATE(1439)] = 53594, + [SMALL_STATE(1440)] = 53604, + [SMALL_STATE(1441)] = 53618, + [SMALL_STATE(1442)] = 53632, + [SMALL_STATE(1443)] = 53644, + [SMALL_STATE(1444)] = 53658, + [SMALL_STATE(1445)] = 53672, + [SMALL_STATE(1446)] = 53686, + [SMALL_STATE(1447)] = 53698, + [SMALL_STATE(1448)] = 53708, + [SMALL_STATE(1449)] = 53722, + [SMALL_STATE(1450)] = 53736, + [SMALL_STATE(1451)] = 53750, + [SMALL_STATE(1452)] = 53764, + [SMALL_STATE(1453)] = 53778, + [SMALL_STATE(1454)] = 53788, + [SMALL_STATE(1455)] = 53802, + [SMALL_STATE(1456)] = 53816, + [SMALL_STATE(1457)] = 53828, + [SMALL_STATE(1458)] = 53842, + [SMALL_STATE(1459)] = 53856, + [SMALL_STATE(1460)] = 53870, + [SMALL_STATE(1461)] = 53884, + [SMALL_STATE(1462)] = 53898, + [SMALL_STATE(1463)] = 53912, + [SMALL_STATE(1464)] = 53926, + [SMALL_STATE(1465)] = 53940, + [SMALL_STATE(1466)] = 53954, + [SMALL_STATE(1467)] = 53968, + [SMALL_STATE(1468)] = 53982, + [SMALL_STATE(1469)] = 53994, + [SMALL_STATE(1470)] = 54006, + [SMALL_STATE(1471)] = 54020, + [SMALL_STATE(1472)] = 54034, + [SMALL_STATE(1473)] = 54046, + [SMALL_STATE(1474)] = 54060, + [SMALL_STATE(1475)] = 54072, + [SMALL_STATE(1476)] = 54086, + [SMALL_STATE(1477)] = 54100, + [SMALL_STATE(1478)] = 54114, + [SMALL_STATE(1479)] = 54126, + [SMALL_STATE(1480)] = 54140, + [SMALL_STATE(1481)] = 54154, + [SMALL_STATE(1482)] = 54166, + [SMALL_STATE(1483)] = 54176, + [SMALL_STATE(1484)] = 54190, + [SMALL_STATE(1485)] = 54204, + [SMALL_STATE(1486)] = 54218, + [SMALL_STATE(1487)] = 54232, + [SMALL_STATE(1488)] = 54246, + [SMALL_STATE(1489)] = 54256, + [SMALL_STATE(1490)] = 54270, + [SMALL_STATE(1491)] = 54284, + [SMALL_STATE(1492)] = 54298, + [SMALL_STATE(1493)] = 54312, + [SMALL_STATE(1494)] = 54324, + [SMALL_STATE(1495)] = 54338, + [SMALL_STATE(1496)] = 54350, + [SMALL_STATE(1497)] = 54364, + [SMALL_STATE(1498)] = 54374, + [SMALL_STATE(1499)] = 54388, + [SMALL_STATE(1500)] = 54402, + [SMALL_STATE(1501)] = 54411, + [SMALL_STATE(1502)] = 54422, + [SMALL_STATE(1503)] = 54433, + [SMALL_STATE(1504)] = 54444, + [SMALL_STATE(1505)] = 54455, + [SMALL_STATE(1506)] = 54464, + [SMALL_STATE(1507)] = 54475, + [SMALL_STATE(1508)] = 54486, + [SMALL_STATE(1509)] = 54497, + [SMALL_STATE(1510)] = 54508, + [SMALL_STATE(1511)] = 54519, + [SMALL_STATE(1512)] = 54530, + [SMALL_STATE(1513)] = 54541, + [SMALL_STATE(1514)] = 54550, + [SMALL_STATE(1515)] = 54559, + [SMALL_STATE(1516)] = 54570, + [SMALL_STATE(1517)] = 54579, + [SMALL_STATE(1518)] = 54590, + [SMALL_STATE(1519)] = 54601, + [SMALL_STATE(1520)] = 54612, + [SMALL_STATE(1521)] = 54623, + [SMALL_STATE(1522)] = 54632, + [SMALL_STATE(1523)] = 54641, + [SMALL_STATE(1524)] = 54652, + [SMALL_STATE(1525)] = 54663, + [SMALL_STATE(1526)] = 54674, + [SMALL_STATE(1527)] = 54683, + [SMALL_STATE(1528)] = 54694, + [SMALL_STATE(1529)] = 54705, + [SMALL_STATE(1530)] = 54716, + [SMALL_STATE(1531)] = 54727, + [SMALL_STATE(1532)] = 54738, + [SMALL_STATE(1533)] = 54749, + [SMALL_STATE(1534)] = 54760, + [SMALL_STATE(1535)] = 54771, + [SMALL_STATE(1536)] = 54782, + [SMALL_STATE(1537)] = 54793, + [SMALL_STATE(1538)] = 54804, + [SMALL_STATE(1539)] = 54813, + [SMALL_STATE(1540)] = 54824, + [SMALL_STATE(1541)] = 54835, + [SMALL_STATE(1542)] = 54844, + [SMALL_STATE(1543)] = 54855, + [SMALL_STATE(1544)] = 54864, + [SMALL_STATE(1545)] = 54875, + [SMALL_STATE(1546)] = 54886, + [SMALL_STATE(1547)] = 54897, + [SMALL_STATE(1548)] = 54908, + [SMALL_STATE(1549)] = 54917, + [SMALL_STATE(1550)] = 54928, + [SMALL_STATE(1551)] = 54939, + [SMALL_STATE(1552)] = 54950, + [SMALL_STATE(1553)] = 54961, + [SMALL_STATE(1554)] = 54972, + [SMALL_STATE(1555)] = 54983, + [SMALL_STATE(1556)] = 54994, + [SMALL_STATE(1557)] = 55005, + [SMALL_STATE(1558)] = 55016, + [SMALL_STATE(1559)] = 55027, + [SMALL_STATE(1560)] = 55038, + [SMALL_STATE(1561)] = 55049, + [SMALL_STATE(1562)] = 55060, + [SMALL_STATE(1563)] = 55071, + [SMALL_STATE(1564)] = 55082, + [SMALL_STATE(1565)] = 55093, + [SMALL_STATE(1566)] = 55104, + [SMALL_STATE(1567)] = 55115, + [SMALL_STATE(1568)] = 55126, + [SMALL_STATE(1569)] = 55137, + [SMALL_STATE(1570)] = 55148, + [SMALL_STATE(1571)] = 55159, + [SMALL_STATE(1572)] = 55170, + [SMALL_STATE(1573)] = 55181, + [SMALL_STATE(1574)] = 55192, + [SMALL_STATE(1575)] = 55203, + [SMALL_STATE(1576)] = 55214, + [SMALL_STATE(1577)] = 55225, + [SMALL_STATE(1578)] = 55236, + [SMALL_STATE(1579)] = 55247, + [SMALL_STATE(1580)] = 55258, + [SMALL_STATE(1581)] = 55269, + [SMALL_STATE(1582)] = 55280, + [SMALL_STATE(1583)] = 55291, + [SMALL_STATE(1584)] = 55302, + [SMALL_STATE(1585)] = 55313, + [SMALL_STATE(1586)] = 55324, + [SMALL_STATE(1587)] = 55335, + [SMALL_STATE(1588)] = 55346, + [SMALL_STATE(1589)] = 55357, + [SMALL_STATE(1590)] = 55368, + [SMALL_STATE(1591)] = 55379, + [SMALL_STATE(1592)] = 55388, + [SMALL_STATE(1593)] = 55397, + [SMALL_STATE(1594)] = 55408, + [SMALL_STATE(1595)] = 55419, + [SMALL_STATE(1596)] = 55430, + [SMALL_STATE(1597)] = 55441, + [SMALL_STATE(1598)] = 55452, + [SMALL_STATE(1599)] = 55463, + [SMALL_STATE(1600)] = 55474, + [SMALL_STATE(1601)] = 55485, + [SMALL_STATE(1602)] = 55496, + [SMALL_STATE(1603)] = 55507, + [SMALL_STATE(1604)] = 55518, + [SMALL_STATE(1605)] = 55529, + [SMALL_STATE(1606)] = 55540, + [SMALL_STATE(1607)] = 55551, + [SMALL_STATE(1608)] = 55562, + [SMALL_STATE(1609)] = 55573, + [SMALL_STATE(1610)] = 55584, + [SMALL_STATE(1611)] = 55595, + [SMALL_STATE(1612)] = 55606, + [SMALL_STATE(1613)] = 55617, + [SMALL_STATE(1614)] = 55628, + [SMALL_STATE(1615)] = 55639, + [SMALL_STATE(1616)] = 55650, + [SMALL_STATE(1617)] = 55661, + [SMALL_STATE(1618)] = 55672, + [SMALL_STATE(1619)] = 55683, + [SMALL_STATE(1620)] = 55694, + [SMALL_STATE(1621)] = 55703, + [SMALL_STATE(1622)] = 55714, + [SMALL_STATE(1623)] = 55725, + [SMALL_STATE(1624)] = 55736, + [SMALL_STATE(1625)] = 55747, + [SMALL_STATE(1626)] = 55758, + [SMALL_STATE(1627)] = 55769, + [SMALL_STATE(1628)] = 55780, + [SMALL_STATE(1629)] = 55791, + [SMALL_STATE(1630)] = 55802, + [SMALL_STATE(1631)] = 55813, + [SMALL_STATE(1632)] = 55824, + [SMALL_STATE(1633)] = 55835, + [SMALL_STATE(1634)] = 55846, + [SMALL_STATE(1635)] = 55857, + [SMALL_STATE(1636)] = 55868, + [SMALL_STATE(1637)] = 55879, + [SMALL_STATE(1638)] = 55890, + [SMALL_STATE(1639)] = 55901, + [SMALL_STATE(1640)] = 55912, + [SMALL_STATE(1641)] = 55923, + [SMALL_STATE(1642)] = 55934, + [SMALL_STATE(1643)] = 55945, + [SMALL_STATE(1644)] = 55956, + [SMALL_STATE(1645)] = 55967, + [SMALL_STATE(1646)] = 55978, + [SMALL_STATE(1647)] = 55989, + [SMALL_STATE(1648)] = 56000, + [SMALL_STATE(1649)] = 56009, + [SMALL_STATE(1650)] = 56018, + [SMALL_STATE(1651)] = 56029, + [SMALL_STATE(1652)] = 56040, + [SMALL_STATE(1653)] = 56051, + [SMALL_STATE(1654)] = 56062, + [SMALL_STATE(1655)] = 56073, + [SMALL_STATE(1656)] = 56084, + [SMALL_STATE(1657)] = 56095, + [SMALL_STATE(1658)] = 56106, + [SMALL_STATE(1659)] = 56117, + [SMALL_STATE(1660)] = 56126, + [SMALL_STATE(1661)] = 56135, + [SMALL_STATE(1662)] = 56144, + [SMALL_STATE(1663)] = 56153, + [SMALL_STATE(1664)] = 56164, + [SMALL_STATE(1665)] = 56175, + [SMALL_STATE(1666)] = 56186, + [SMALL_STATE(1667)] = 56197, + [SMALL_STATE(1668)] = 56208, + [SMALL_STATE(1669)] = 56219, + [SMALL_STATE(1670)] = 56228, + [SMALL_STATE(1671)] = 56239, + [SMALL_STATE(1672)] = 56250, + [SMALL_STATE(1673)] = 56261, + [SMALL_STATE(1674)] = 56270, + [SMALL_STATE(1675)] = 56281, + [SMALL_STATE(1676)] = 56292, + [SMALL_STATE(1677)] = 56303, + [SMALL_STATE(1678)] = 56314, + [SMALL_STATE(1679)] = 56323, + [SMALL_STATE(1680)] = 56334, + [SMALL_STATE(1681)] = 56345, + [SMALL_STATE(1682)] = 56356, + [SMALL_STATE(1683)] = 56367, + [SMALL_STATE(1684)] = 56378, + [SMALL_STATE(1685)] = 56389, + [SMALL_STATE(1686)] = 56398, + [SMALL_STATE(1687)] = 56409, + [SMALL_STATE(1688)] = 56420, + [SMALL_STATE(1689)] = 56431, + [SMALL_STATE(1690)] = 56440, + [SMALL_STATE(1691)] = 56451, + [SMALL_STATE(1692)] = 56462, + [SMALL_STATE(1693)] = 56473, + [SMALL_STATE(1694)] = 56484, + [SMALL_STATE(1695)] = 56495, + [SMALL_STATE(1696)] = 56504, + [SMALL_STATE(1697)] = 56515, + [SMALL_STATE(1698)] = 56526, + [SMALL_STATE(1699)] = 56537, + [SMALL_STATE(1700)] = 56546, + [SMALL_STATE(1701)] = 56557, + [SMALL_STATE(1702)] = 56568, + [SMALL_STATE(1703)] = 56577, + [SMALL_STATE(1704)] = 56588, + [SMALL_STATE(1705)] = 56599, + [SMALL_STATE(1706)] = 56610, + [SMALL_STATE(1707)] = 56621, + [SMALL_STATE(1708)] = 56632, + [SMALL_STATE(1709)] = 56643, + [SMALL_STATE(1710)] = 56654, + [SMALL_STATE(1711)] = 56665, + [SMALL_STATE(1712)] = 56676, + [SMALL_STATE(1713)] = 56687, + [SMALL_STATE(1714)] = 56698, + [SMALL_STATE(1715)] = 56709, + [SMALL_STATE(1716)] = 56720, + [SMALL_STATE(1717)] = 56731, + [SMALL_STATE(1718)] = 56742, + [SMALL_STATE(1719)] = 56753, + [SMALL_STATE(1720)] = 56764, + [SMALL_STATE(1721)] = 56775, + [SMALL_STATE(1722)] = 56786, + [SMALL_STATE(1723)] = 56795, + [SMALL_STATE(1724)] = 56806, + [SMALL_STATE(1725)] = 56817, + [SMALL_STATE(1726)] = 56828, + [SMALL_STATE(1727)] = 56839, + [SMALL_STATE(1728)] = 56848, + [SMALL_STATE(1729)] = 56859, + [SMALL_STATE(1730)] = 56870, + [SMALL_STATE(1731)] = 56881, + [SMALL_STATE(1732)] = 56890, + [SMALL_STATE(1733)] = 56899, + [SMALL_STATE(1734)] = 56910, + [SMALL_STATE(1735)] = 56919, + [SMALL_STATE(1736)] = 56930, + [SMALL_STATE(1737)] = 56941, + [SMALL_STATE(1738)] = 56950, + [SMALL_STATE(1739)] = 56961, + [SMALL_STATE(1740)] = 56972, + [SMALL_STATE(1741)] = 56983, + [SMALL_STATE(1742)] = 56994, + [SMALL_STATE(1743)] = 57005, + [SMALL_STATE(1744)] = 57016, + [SMALL_STATE(1745)] = 57027, + [SMALL_STATE(1746)] = 57038, + [SMALL_STATE(1747)] = 57049, + [SMALL_STATE(1748)] = 57058, + [SMALL_STATE(1749)] = 57066, + [SMALL_STATE(1750)] = 57074, + [SMALL_STATE(1751)] = 57082, + [SMALL_STATE(1752)] = 57090, + [SMALL_STATE(1753)] = 57098, + [SMALL_STATE(1754)] = 57106, + [SMALL_STATE(1755)] = 57114, + [SMALL_STATE(1756)] = 57122, + [SMALL_STATE(1757)] = 57130, + [SMALL_STATE(1758)] = 57138, + [SMALL_STATE(1759)] = 57146, + [SMALL_STATE(1760)] = 57154, + [SMALL_STATE(1761)] = 57162, + [SMALL_STATE(1762)] = 57170, + [SMALL_STATE(1763)] = 57178, + [SMALL_STATE(1764)] = 57186, + [SMALL_STATE(1765)] = 57194, + [SMALL_STATE(1766)] = 57202, + [SMALL_STATE(1767)] = 57210, + [SMALL_STATE(1768)] = 57218, + [SMALL_STATE(1769)] = 57226, + [SMALL_STATE(1770)] = 57236, + [SMALL_STATE(1771)] = 57246, + [SMALL_STATE(1772)] = 57254, + [SMALL_STATE(1773)] = 57262, + [SMALL_STATE(1774)] = 57270, + [SMALL_STATE(1775)] = 57278, + [SMALL_STATE(1776)] = 57286, + [SMALL_STATE(1777)] = 57294, + [SMALL_STATE(1778)] = 57302, + [SMALL_STATE(1779)] = 57310, + [SMALL_STATE(1780)] = 57318, + [SMALL_STATE(1781)] = 57326, + [SMALL_STATE(1782)] = 57334, + [SMALL_STATE(1783)] = 57342, + [SMALL_STATE(1784)] = 57350, + [SMALL_STATE(1785)] = 57358, + [SMALL_STATE(1786)] = 57368, + [SMALL_STATE(1787)] = 57376, + [SMALL_STATE(1788)] = 57386, + [SMALL_STATE(1789)] = 57394, + [SMALL_STATE(1790)] = 57402, + [SMALL_STATE(1791)] = 57410, + [SMALL_STATE(1792)] = 57418, + [SMALL_STATE(1793)] = 57426, + [SMALL_STATE(1794)] = 57434, + [SMALL_STATE(1795)] = 57442, + [SMALL_STATE(1796)] = 57450, + [SMALL_STATE(1797)] = 57458, + [SMALL_STATE(1798)] = 57466, + [SMALL_STATE(1799)] = 57474, + [SMALL_STATE(1800)] = 57482, + [SMALL_STATE(1801)] = 57490, + [SMALL_STATE(1802)] = 57498, + [SMALL_STATE(1803)] = 57506, + [SMALL_STATE(1804)] = 57514, + [SMALL_STATE(1805)] = 57522, + [SMALL_STATE(1806)] = 57530, + [SMALL_STATE(1807)] = 57538, + [SMALL_STATE(1808)] = 57546, + [SMALL_STATE(1809)] = 57556, + [SMALL_STATE(1810)] = 57564, + [SMALL_STATE(1811)] = 57572, + [SMALL_STATE(1812)] = 57580, + [SMALL_STATE(1813)] = 57588, + [SMALL_STATE(1814)] = 57596, + [SMALL_STATE(1815)] = 57604, + [SMALL_STATE(1816)] = 57612, + [SMALL_STATE(1817)] = 57620, + [SMALL_STATE(1818)] = 57628, + [SMALL_STATE(1819)] = 57636, + [SMALL_STATE(1820)] = 57644, + [SMALL_STATE(1821)] = 57652, + [SMALL_STATE(1822)] = 57660, + [SMALL_STATE(1823)] = 57670, + [SMALL_STATE(1824)] = 57678, + [SMALL_STATE(1825)] = 57686, + [SMALL_STATE(1826)] = 57694, + [SMALL_STATE(1827)] = 57702, + [SMALL_STATE(1828)] = 57710, + [SMALL_STATE(1829)] = 57718, + [SMALL_STATE(1830)] = 57728, + [SMALL_STATE(1831)] = 57736, + [SMALL_STATE(1832)] = 57744, + [SMALL_STATE(1833)] = 57754, + [SMALL_STATE(1834)] = 57762, + [SMALL_STATE(1835)] = 57770, + [SMALL_STATE(1836)] = 57778, + [SMALL_STATE(1837)] = 57786, + [SMALL_STATE(1838)] = 57794, + [SMALL_STATE(1839)] = 57802, + [SMALL_STATE(1840)] = 57810, + [SMALL_STATE(1841)] = 57818, + [SMALL_STATE(1842)] = 57826, + [SMALL_STATE(1843)] = 57834, + [SMALL_STATE(1844)] = 57842, + [SMALL_STATE(1845)] = 57850, + [SMALL_STATE(1846)] = 57858, + [SMALL_STATE(1847)] = 57866, + [SMALL_STATE(1848)] = 57874, + [SMALL_STATE(1849)] = 57882, + [SMALL_STATE(1850)] = 57890, + [SMALL_STATE(1851)] = 57898, + [SMALL_STATE(1852)] = 57906, + [SMALL_STATE(1853)] = 57914, + [SMALL_STATE(1854)] = 57922, + [SMALL_STATE(1855)] = 57930, + [SMALL_STATE(1856)] = 57938, + [SMALL_STATE(1857)] = 57946, + [SMALL_STATE(1858)] = 57954, + [SMALL_STATE(1859)] = 57962, + [SMALL_STATE(1860)] = 57970, + [SMALL_STATE(1861)] = 57978, + [SMALL_STATE(1862)] = 57986, + [SMALL_STATE(1863)] = 57994, + [SMALL_STATE(1864)] = 58002, + [SMALL_STATE(1865)] = 58010, + [SMALL_STATE(1866)] = 58018, + [SMALL_STATE(1867)] = 58026, + [SMALL_STATE(1868)] = 58034, + [SMALL_STATE(1869)] = 58042, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -81755,1640 +92333,1795 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(456), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(299), - [161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1031), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1579), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1095), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(352), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1098), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1457), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1358), - [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(93), - [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(339), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(227), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1474), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1385), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1302), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1329), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1476), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(109), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(141), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(57), - [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(79), - [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1148), - [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1245), - [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1239), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1156), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(322), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1262), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(143), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(179), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), - [256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(179), - [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(181), - [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1115), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(677), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1648), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(677), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(643), - [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1339), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), - [285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), - [287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 98), - [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 98), - [291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 57), - [293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 57), - [295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 36), - [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 36), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), - [501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), - [503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), - [505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), - [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), - [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), - [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), - [521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), - [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), - [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), - [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 67), - [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 67), - [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 96), - [533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 96), - [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 96), - [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 96), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 35), - [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 35), - [545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 35), - [547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 35), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 74), - [553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 74), - [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 74), - [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 74), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 78), - [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 78), - [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 78), - [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 78), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 69), - [573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 69), - [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 69), - [577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 69), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 86), - [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 86), - [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 86), - [587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 86), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 86), - [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 86), - [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 86), - [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 86), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 90), - [603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 90), - [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 90), - [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 90), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), - [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(31), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1008), - [847] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), SHIFT(97), - [851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(220), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(97), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), - [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(201), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), - [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(231), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 6), - [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 6), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 19), - [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(130), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 19), - [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 28), - [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 28), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 6), - [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 6), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 24), - [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 24), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 103), - [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 103), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 60), - [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 60), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 6), - [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 6), - [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 27), - [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 27), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 100), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 100), - [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102), - [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102), - [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 52), - [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 52), - [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 96), - [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 96), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 107), - [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 107), - [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 29), - [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 29), - [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 30), - [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 30), - [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 30), - [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 30), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 108), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 108), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 109), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 109), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 61), - [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 61), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), - [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 110), - [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 110), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 50), - [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 50), - [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 20), - [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 20), - [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 52), - [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 52), - [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 53), - [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 53), - [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 21), - [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 21), - [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 60), - [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 60), - [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 69), - [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 69), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 77), - [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 77), - [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 23), - [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 23), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 52), - [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 52), - [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 3), - [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 3), - [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 20), - [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 20), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), - [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 25), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 25), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 13), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 13), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 74), - [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 74), - [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 23), - [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 23), - [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 58), - [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 58), - [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 89), - [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 89), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 86), - [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 86), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 78), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 78), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 35), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 35), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 14), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 14), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 26), - [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 26), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 59), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 59), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 94), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 94), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 86), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 86), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 90), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 90), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 101), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 101), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 76), - [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 76), - [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 44), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 44), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 45), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 45), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 43), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 43), - [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 4), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 88), - [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 88), - [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 46), - [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 46), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(92), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 105), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 105), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 106), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 106), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 99), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 99), - [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), - [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(203), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 92), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 92), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), - [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(232), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), - [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 93), - [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 93), - [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), - [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(133), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 7), - [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 7), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), - [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), - [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 39), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 39), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), - [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 6), - [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 6), - [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 9), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 9), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 10), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 10), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 11), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 11), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 16), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 16), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 17), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 17), - [1408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 17), REDUCE(sym_object_pattern, 3, 0, 18), - [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 18), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 31), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 31), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 36), - [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 36), - [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 37), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 37), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 1, 38), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 1, 38), - [1441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 41), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 41), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 47), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 47), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 48), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 48), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 49), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 49), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 17), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 17), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 62), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 62), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 70), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 70), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 71), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 71), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 72), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 72), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 73), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 73), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 71), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 71), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 75), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 75), - [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 31), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 31), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 79), - [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 79), - [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 85), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 85), - [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 42), - [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 42), - [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 42), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 15), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 40), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 87), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 18), - [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 54), REDUCE(sym_assignment_expression, 3, 0, 40), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 54), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 57), - [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 57), SHIFT(254), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), - [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 40), REDUCE(sym_assignment_expression, 3, 0, 40), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 40), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 40), - [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), - [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 17), REDUCE(sym_object_pattern, 3, 0, 18), - [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), - [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 54), REDUCE(sym_assignment_expression, 3, 0, 15), - [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 55), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 57), SHIFT(281), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [1976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [2047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1240), - [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1020), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), - [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(876), - [2058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(268), - [2061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1266), - [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1200), - [2067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(908), - [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1130), - [2073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(1339), - [2076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(895), - [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(980), - [2082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 68), SHIFT_REPEAT(921), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [2127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(1477), - [2130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 17), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 18), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 17), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 81), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 81), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 97), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 97), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 91), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 91), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 43), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 43), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 96), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 96), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 56), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 56), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 104), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 104), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), - [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 12), SHIFT_REPEAT(1339), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 74), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 74), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 86), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 86), - [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 33), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 33), - [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 33), SHIFT_REPEAT(963), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 6), - [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 6), - [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 33), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 33), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 36), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 36), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 9), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 9), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [2501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(105), - [2504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1045), - [2507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1137), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 63), SHIFT_REPEAT(1094), - [2553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 63), SHIFT_REPEAT(104), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 63), - [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 63), SHIFT_REPEAT(1094), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [2581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 4), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 4), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(1383), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), - [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 18), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 43), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 43), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 83), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 64), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 66), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1123), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), - [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(163), - [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 1, 0, 34), - [2687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1685), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), - [2692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(165), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [2701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(203), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), - [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0), - [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 62), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 62), - [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 31), - [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 31), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 32), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 32), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(232), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), - [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 4), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 4), - [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), - [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 22), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), - [2843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), - [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 18), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(102), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [2924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1079), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [2941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(186), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [2950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1244), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [2967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1252), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [2992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1263), - [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), - [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1263), - [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1264), - [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), - [3005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1264), - [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 55), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(1107), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), - [3051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(95), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [3060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), - [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), - [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [3094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(107), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [3125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1125), - [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), - [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 20), - [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [3176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(875), - [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [3183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(880), - [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), - [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), - [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 82), - [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 84), - [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, 0, 95), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 65), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 80), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 80), - [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [3296] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), - [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [179] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), SHIFT(119), + [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(68), + [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(111), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1318), + [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(224), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1769), + [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(229), + [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1229), + [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(531), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(166), + [226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1144), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1657), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1197), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(396), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1199), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1196), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(31), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1668), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1677), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1498), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(119), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(418), + [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1506), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1708), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1456), + [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1446), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1727), + [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(142), + [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(81), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(111), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1318), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1339), + [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1364), + [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1268), + [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(371), + [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1336), + [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(224), + [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1769), + [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(224), + [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(229), + [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1229), + [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(740), + [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1830), + [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(740), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(771), + [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1470), + [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(535), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), + [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2, 0, 0), + [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 38), + [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, 0, 38), + [361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 101), + [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, 0, 101), + [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 59), + [367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, 0, 59), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(120), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(105), + [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1260), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(244), + [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1832), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(245), + [419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1242), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(110), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(315), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(316), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(119), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 20), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(155), + [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), + [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(317), + [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(246), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(220), + [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1829), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(294), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 20), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(335), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1785), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(336), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(856), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(274), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(275), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 70), + [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 70), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), + [702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), + [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), + [710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 93), + [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 93), + [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 93), + [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 93), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 89), + [734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 89), + [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 89), + [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 89), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 89), + [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 89), + [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 89), + [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 89), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 99), + [754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 99), + [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 99), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 99), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 37), + [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 37), + [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 37), + [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 37), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 72), + [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 72), + [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 72), + [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 72), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 77), + [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 77), + [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 77), + [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 77), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 81), + [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 81), + [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 81), + [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 81), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(1648), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1122), + [1068] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 4), SHIFT(126), + [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(269), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(126), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 7), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 7), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 30), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 30), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 63), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 63), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 7), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 7), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 107), + [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 107), + [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 26), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 26), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4, 0, 25), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4, 0, 25), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 54), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 54), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 5, 0, 60), + [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 5, 0, 60), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4, 0, 60), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4, 0, 60), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 54), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 54), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 61), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 61), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 28), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 28), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 63), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 63), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 72), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 72), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 29), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 29), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 3), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 3), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 77), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 77), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 31), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 31), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 32), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 32), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 32), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 32), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 92), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 92), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 81), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 81), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 62), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 62), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 55), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 55), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 97), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 97), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 14), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 14), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 15), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 15), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 54), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 54), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 89), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 89), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 89), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 89), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 93), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 93), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 7), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 7), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 64), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 64), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 104), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 104), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 105), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 105), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 37), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 37), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 106), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 106), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 21), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 21), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 80), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 80), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 99), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 99), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 21), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 21), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 22), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 22), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 25), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 25), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 3, 0, 25), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 3, 0, 25), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 27), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 27), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 115), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 115), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 116), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 116), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 117), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 117), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 120), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 120), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 25), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 25), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 52), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 52), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 4), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), + [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 91), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 91), + [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 45), + [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 45), + [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 46), + [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 46), + [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 47), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 47), + [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 48), + [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 48), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 79), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 79), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(118), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 109), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 109), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 110), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 110), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 111), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 111), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 112), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 112), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 113), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 113), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 114), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, 0, 114), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 102), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 102), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 103), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, 0, 103), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 8, 0, 118), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 8, 0, 118), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 95), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 95), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 8, 0, 119), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 8, 0, 119), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 96), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, 0, 96), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), + [1532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(319), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(249), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(160), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 8), + [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 8), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 9), + [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 9), + [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 9), + [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 9), + [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 33), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 33), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 33), + [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, 0, 33), + [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 38), + [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 38), + [1611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 39), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 39), + [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 1, 40), + [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 1, 40), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 41), + [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 41), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 43), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 43), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [1641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 7), + [1648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 7), + [1650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 11), + [1652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 11), + [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 10), + [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 10), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 12), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 12), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 49), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 49), + [1666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 50), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 50), + [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 51), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 51), + [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 53), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 53), + [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 18), + [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 18), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 65), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, 0, 65), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 73), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 73), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 74), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 74), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 75), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 75), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 76), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 76), + [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 17), + [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 17), + [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 74), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 74), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 18), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 18), + [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 18), REDUCE(sym_object_pattern, 3, 0, 19), + [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 19), + [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 78), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 78), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), + [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), + [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 88), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 88), + [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), + [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 82), + [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 82), + [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 90), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 16), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 42), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 44), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 44), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 44), + [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 19), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), + [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [1921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 56), REDUCE(sym_assignment_expression, 3, 0, 42), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 56), + [1926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 56), REDUCE(sym_assignment_expression, 3, 0, 16), + [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), + [1934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 18), REDUCE(sym_object_pattern, 3, 0, 19), + [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 42), REDUCE(sym_assignment_expression, 3, 0, 42), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 42), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 42), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 59), + [1964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 59), SHIFT(298), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 57), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [2243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 59), SHIFT(340), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1342), + [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1130), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), + [2325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(985), + [2328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(312), + [2331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1330), + [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1331), + [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1023), + [2340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1228), + [2343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1470), + [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1009), + [2349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1101), + [2352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 71), SHIFT_REPEAT(1028), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [2413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 4), SHIFT(1698), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [2436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 18), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 19), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 18), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 94), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 94), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 100), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 100), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 58), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 58), + [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 13), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 13), + [2525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 13), SHIFT_REPEAT(1470), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 45), + [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 45), + [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 77), + [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 77), + [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 84), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 84), + [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 99), + [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 99), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 108), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 108), + [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 89), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 89), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35), + [2562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 35), SHIFT_REPEAT(1073), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 35), + [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 35), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 38), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, 0, 38), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 7), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, 0, 7), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 10), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 10), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [2789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(129), + [2792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1160), + [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1288), + [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [2822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 66), SHIFT_REPEAT(1215), + [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 66), SHIFT_REPEAT(131), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 66), + [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, 0, 66), SHIFT_REPEAT(1215), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 6), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 6), SHIFT(1649), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [2896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(252), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 4), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 4), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 19), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 1, 0, 36), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 45), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 45), + [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 67), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 69), + [2957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1233), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [2962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1759), + [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [2986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(191), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 86), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2, 0, 0), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, -1, 65), + [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 65), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), + [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3, 0, 0), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [3051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(249), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 23), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 24), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 4), + [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 4), + [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, -1, 33), + [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 33), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 34), + [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, 0, 34), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [3122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(319), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [3147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1320), + [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), + [3152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1320), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [3191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1201), + [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [3208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(234), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [3217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1348), + [3220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), + [3222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1348), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [3229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(127), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 19), + [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [3322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1395), + [3325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [3327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(1396), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(989), + [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [3371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(992), + [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 6), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [3390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(121), + [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 57), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 21), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 6), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1205), + [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [3468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(135), + [3471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(1221), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 85), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 83), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 83), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, 0, 87), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, 0, 68), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, 0, 98), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [3644] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), }; enum ts_external_scanner_symbol_identifiers { @@ -83427,12 +94160,12 @@ static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_html_comment] = true, }, [3] = { + [ts_external_token__automatic_semicolon] = true, [ts_external_token__ternary_qmark] = true, [ts_external_token_html_comment] = true, [ts_external_token_PIPE_PIPE] = true, }, [4] = { - [ts_external_token__automatic_semicolon] = true, [ts_external_token__ternary_qmark] = true, [ts_external_token_html_comment] = true, [ts_external_token_PIPE_PIPE] = true, @@ -83479,7 +94212,7 @@ void tree_sitter_javascript_external_scanner_deserialize(void *, const char *, u TS_PUBLIC const TSLanguage *tree_sitter_javascript(void) { static const TSLanguage language = { - .version = LANGUAGE_VERSION, + .abi_version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, @@ -83487,6 +94220,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_javascript(void) { .state_count = STATE_COUNT, .large_state_count = LARGE_STATE_COUNT, .production_id_count = PRODUCTION_ID_COUNT, + .supertype_count = SUPERTYPE_COUNT, .field_count = FIELD_COUNT, .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, .parse_table = &ts_parse_table[0][0], @@ -83497,11 +94231,14 @@ TS_PUBLIC const TSLanguage *tree_sitter_javascript(void) { .field_names = ts_field_names, .field_map_slices = ts_field_map_slices, .field_map_entries = ts_field_map_entries, + .supertype_map_slices = ts_supertype_map_slices, + .supertype_map_entries = ts_supertype_map_entries, + .supertype_symbols = ts_supertype_symbols, .symbol_metadata = ts_symbol_metadata, .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, .alias_sequences = &ts_alias_sequences[0][0], - .lex_modes = ts_lex_modes, + .lex_modes = (const void*)ts_lex_modes, .lex_fn = ts_lex, .keyword_lex_fn = ts_lex_keywords, .keyword_capture_token = sym_identifier, @@ -83515,6 +94252,14 @@ TS_PUBLIC const TSLanguage *tree_sitter_javascript(void) { tree_sitter_javascript_external_scanner_deserialize, }, .primary_state_ids = ts_primary_state_ids, + .name = "javascript", + .reserved_words = &ts_reserved_words[0][0], + .max_reserved_word_set_size = 35, + .metadata = { + .major_version = 0, + .minor_version = 23, + .patch_version = 1, + }, }; return &language; } diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h index 15a3b233..a17a574f 100644 --- a/src/tree_sitter/array.h +++ b/src/tree_sitter/array.h @@ -14,6 +14,7 @@ extern "C" { #include #ifdef _MSC_VER +#pragma warning(push) #pragma warning(disable : 4101) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push @@ -278,7 +279,7 @@ static inline void _array__splice(Array *self, size_t element_size, #define _compare_int(a, b) ((int)*(a) - (int)(b)) #ifdef _MSC_VER -#pragma warning(default : 4101) +#pragma warning(pop) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic pop #endif diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 799f599b..858107de 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -18,6 +18,11 @@ typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; +typedef struct TSLanguageMetadata { + uint8_t major_version; + uint8_t minor_version; + uint8_t patch_version; +} TSLanguageMetadata; #endif typedef struct { @@ -26,10 +31,11 @@ typedef struct { bool inherited; } TSFieldMapEntry; +// Used to index the field and supertype maps. typedef struct { uint16_t index; uint16_t length; -} TSFieldMapSlice; +} TSMapSlice; typedef struct { bool visible; @@ -79,6 +85,12 @@ typedef struct { uint16_t external_lex_state; } TSLexMode; +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; + uint16_t reserved_word_set_id; +} TSLexerMode; + typedef union { TSParseAction action; struct { @@ -93,7 +105,7 @@ typedef struct { } TSCharacterRange; struct TSLanguage { - uint32_t version; + uint32_t abi_version; uint32_t symbol_count; uint32_t alias_count; uint32_t token_count; @@ -109,13 +121,13 @@ struct TSLanguage { const TSParseActionEntry *parse_actions; const char * const *symbol_names; const char * const *field_names; - const TSFieldMapSlice *field_map_slices; + const TSMapSlice *field_map_slices; const TSFieldMapEntry *field_map_entries; const TSSymbolMetadata *symbol_metadata; const TSSymbol *public_symbol_map; const uint16_t *alias_map; const TSSymbol *alias_sequences; - const TSLexMode *lex_modes; + const TSLexerMode *lex_modes; bool (*lex_fn)(TSLexer *, TSStateId); bool (*keyword_lex_fn)(TSLexer *, TSStateId); TSSymbol keyword_capture_token; @@ -129,15 +141,23 @@ struct TSLanguage { void (*deserialize)(void *, const char *, unsigned); } external_scanner; const TSStateId *primary_state_ids; + const char *name; + const TSSymbol *reserved_words; + uint16_t max_reserved_word_set_size; + uint32_t supertype_count; + const TSSymbol *supertype_symbols; + const TSMapSlice *supertype_map_slices; + const TSSymbol *supertype_map_entries; + TSLanguageMetadata metadata; }; -static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { +static inline bool set_contains(const 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]; + const TSCharacterRange *range = &ranges[mid_index]; if (lookahead >= range->start && lookahead <= range->end) { return true; } else if (lookahead > range->end) { @@ -145,7 +165,7 @@ static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t } size -= half_size; } - TSCharacterRange *range = &ranges[index]; + const TSCharacterRange *range = &ranges[index]; return (lookahead >= range->start && lookahead <= range->end); }